Structure programming codes include
-
sequencing
-
arrangement of objects
-
iteration
-
both (1) and (3)
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.