IF Statements

IF Statements

11th Grade

8 Qs

quiz-placeholder

Similar activities

Excel_M5_L5_Warm-up

Excel_M5_L5_Warm-up

9th - 12th Grade

3 Qs

Objective 1.03 Personal and Transferable Skills

Objective 1.03 Personal and Transferable Skills

6th Grade - University

13 Qs

Logical Operator & Ternary Operators

Logical Operator & Ternary Operators

6th - 12th Grade

9 Qs

FINAL TEST 11°

FINAL TEST 11°

11th Grade

5 Qs

SQL

SQL

11th - 12th Grade

12 Qs

Python Comparison Operators

Python Comparison Operators

8th - 11th Grade

13 Qs

Javascript conditions

Javascript conditions

11th Grade

6 Qs

Solving Systems of Linear Inequalities

Solving Systems of Linear Inequalities

9th - 12th Grade

13 Qs

IF Statements

IF Statements

Assessment

Quiz

Computers

11th Grade

Medium

Created by

P Roberts

Used 21+ times

FREE Resource

8 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

We want to check if A4 is less than or equal to 650. If true, we want to return "Within budget". If false, we want to return "Over budget".

What is the missing symbol from this statement?

=IF(A4 [fill in blank] 650, , "Within budget", "Over budget")

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

We want to check if A6 is equal to 70. If true, we want to return "Within budget". If false, we want to return "Over budget".

What is the missing symbol from this statement?

=IF(A4 [fill in blank] 70, , "Within budget", "Over budget"

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the < symbol mean?

Equal to

Greater than

Less than

Greater than or equal to

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the symbol > mean?

Greater than

Equal to

Less than

Less than or equal to

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the symbol = mean?

Greater than

Equal to

Less than

Greater than or equal to

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does this symbol >= mean?

Greater than

Greater than or equal to

Less than or equal to

Equals to

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the <= symbol mean?

Greater than

Less than

Less than or equal to

Equal to

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In cell A2 - we want to check if the budget is greater than 400. If true we want to return "Over budget". If false, we want to return "Under budget".

How would we write this IF statement?

=IF(A2>400, "Over Budget", "Under budget")

=IF(A2<=400, "Over Budget", "Under budget")