What are two advantages to using blocks for code repetition?
It makes code more concise and makes de bugging a much easier process
What are parameters?
They are placeholders for values
Give an example of a formula that takes at least one parameter.
The distance formula
Give an example of a situation where no parameters are needed
They aren't needed when performing set actions, not one with variables.
Explain what you think the following program does? How do blocks make this easier to understand? Explain what you would expect within each block.
This program would alphabetize names. The blocks serve as steps that have already been defined, limiting the number of steps necesarry in creating the program.