Question #1-Blocks: What are two advantages to using blocks for code repetition?
It shortens the acuall code and by puting in a block with the premade code, it also makes it easier to debug codes.
Question #2-Parameters 1
What are parameters?
parameters are the optional inputs for the custom blocks like adding a numerical value.
Question #3-Parameters 2
Give an example of a formula that takes at least one parameter.
The distance formula where the parameters are set to the given coordinates.
Question #4-Parameters 3
Give an example of a situation where no parameters are needed
no parameters are needed when the block is just a set of actions.
Question #5-Block
Explain what you think the following program does? How do blocks make this easier to understand? Explain what you would expect within each block.
you can put the block alpha order to shorten code and it does everything the same as if you were to put each block in by itself. i think the code takes a list consisting of names, so it takes a name enters it into a list of some sorts and records/saves the list and continues the code. each of the commands are part of a different code block.