IF Statements

IF Statements

11th Grade

8 Qs

quiz-placeholder

Similar activities

Gmetrix JavaScript Session 3 Test

Gmetrix JavaScript Session 3 Test

9th - 12th Grade

10 Qs

Python Operators & Expressions

Python Operators & Expressions

8th - 11th Grade

13 Qs

2.1.3 Searching Algorithms

2.1.3 Searching Algorithms

10th - 11th Grade

12 Qs

11 B

11 B

11th Grade

13 Qs

ม.5 คำสั่งเปรียบเทียบ-Comparison Operators

ม.5 คำสั่งเปรียบเทียบ-Comparison Operators

11th Grade

10 Qs

AP CSP Ifs and If Else

AP CSP Ifs and If Else

9th - 12th Grade

12 Qs

Control Structures - Selection in Python

Control Structures - Selection in Python

8th Grade - University

11 Qs

Intro to Variables

Intro to Variables

9th - 12th Grade

9 Qs

IF Statements

IF Statements

Assessment

Quiz

Computers

11th Grade

Medium

Created by

P Roberts

Used 20+ 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")