Multiple choice

I need to decide between two paths. Do I use a...

  1. IF statement

  2. For loop

  3. While loop

  4. List

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

An 'IF' statement is a conditional control structure used in programming to execute different blocks of code based on whether a condition is true or false. Loops (like For and While) are used for repetition, and lists are data structures used to store multiple items.