If Statements

If Statements

Assessment

Interactive Video

Other

9th - 12th Grade

Hard

Created by

Catherine Henderson

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the main purpose of an if statement in a program?

To make decisions based on conditions

To store data in variables

To execute code in a loop

To print text to the console

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What must the condition in an if statement evaluate to?

A list

A Boolean value

A number

A string

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens if the condition in an if statement is false?

The program crashes

The code inside the if statement runs

The program restarts

Nothing happens

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of an else statement?

To handle the case when the if condition is false

To start a new program

To repeat the if statement

To end the program

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In an if-else statement, what are the blocks of code called?

Variables

Functions

Loops

Branches