Multiple choice

Structure programming codes include

  1. sequencing

  2. arrangement of objects

  3. iteration

  4. both (1) and (3)

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Structured programming is built on three fundamental control structures: sequence (executing steps in order), selection (making decisions with if-then-else), and iteration (looping with while or for). These structures form the basis for writing organized, maintainable code without goto statements.