Multiple choice

_______ statement(s) allow the programmer to change the flow of program execution.

  1. Inquiry-and-response

  2. Print

  3. Control

  4. Flowcharting

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

Control statements like IF, SELECT CASE, and loops allow programmers to alter the sequential execution of a program. Inquiry-and-response handles user input, Print displays output, and Flowcharting is a design tool. Only control statements actively change the flow of program execution by making decisions or repeating actions based on conditions.