Respuesta :
Answer:
Sequencing and Iteration
Explanation:
Sequencing is a part of all programs, as it's just the fact that computers execute programs in a particular sequence (like top to bottom line in a simple program).
Iteration on the other hand is when we use loops to repeat code in a program.
Answer:
Sequencing and Iteration
Explanation:
An algorithm is a set of instructions that enable us to solve a problem. There three main pieces of algorithm: sequencing, selection and iteration.
Sequencing implies the order of the execution. In this example, it can be seen as initializing the variable sum before calculating the height.
Iteration implies the repetition. In this example, it can be seen as converting each height.
Selection is another building block that is used if there are conditions/different paths in the algorithm.