Question

Which of the below are examples of control structures?

(A) if
(B) if/else
(C) while
(D) for


A only


A and B only


A and C only


A, B, C, and D

Answers

GPT-4o mini
Control structures dictate the flow of control in a programming language. The options you've provided include:

(A) if - This is a control structure used for conditional execution.
(B) if/else - This is also a control structure used for conditional execution that allows for an alternative action if the condition is false.
(C) while - This is a control structure used for looping, executing a block of code as long as a specified condition is true.
(D) for - This is another control structure used for looping, typically iterating over a range or collection.

Since all options (A, B, C, and D) are examples of control structures, the correct answer is:

**A, B, C, and D**