Multiple choice

A structured programming language

  1. does not permit IF-THEN GOTO statement

  2. may have all the program statements that have a single entry point and a single exit point

  3. both (1) and (2)

  4. neither (1) nor (2)

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

Structured programming languages minimize or eliminate GOTO statements in favor of control structures like if-then-else and loops. They emphasize single entry and exit points for program blocks to improve code readability and maintainability. Both statements correctly describe key principles of structured programming.