Boolean logic

Boolean logic

6th - 8th Grade

7 Qs

quiz-placeholder

Similar activities

VEXcode VR Unit 9

VEXcode VR Unit 9

6th Grade

10 Qs

Computational Thinking

Computational Thinking

8th - 12th Grade

10 Qs

Conditional Statements

Conditional Statements

8th Grade

9 Qs

Alice 2 - Chapter 3

Alice 2 - Chapter 3

7th - 12th Grade

10 Qs

Value Methods Vocab

Value Methods Vocab

8th - 12th Grade

12 Qs

If statement and Boolean operators

If statement and Boolean operators

8th Grade

10 Qs

Sprites, syntax, variables, and conditionals

Sprites, syntax, variables, and conditionals

6th - 8th Grade

10 Qs

JavaScript

JavaScript

7th Grade

10 Qs

Boolean logic

Boolean logic

Assessment

Quiz

Computers

6th - 8th Grade

Easy

Created by

ELISABETTA IANNONE

Used 3+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a Boolean?

A number

A value that is either True or False

A type of loop

A kind of variable

Answer explanation

Booleans only have two possible values: True or False.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these is a Boolean expression?

5 + 3 = 8

print("Hello")

7 > 2

x = 10

Answer explanation

This is a comparison that evaluates to True or False.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In programming, what does Boolean logic help us do?

Make decisions based on conditions

Draw pictures

Store text

Play sounds

Answer explanation

Boolean logic helps programs choose what to do depending on conditions.

4.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

What does the AND operator do?

Returns the opposite of a condition

Returns True if any condition is True

Returns False always

Returns True if all conditions are True

Answer explanation

AND only returns True if every condition it checks is True.

5.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

What does the OR operator do?

Returns True if all conditions are True

Returns True if at least one condition is True

Returns False if one condition is True

Returns the opposite of a condition

Answer explanation

OR returns True if any one of the conditions is True.

6.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

What does the NOT operator do?

Checks two conditions

Combines two conditions

Reverses a condition (True becomes False, False becomes True)

Adds numbers together

Answer explanation

NOT flips the value of a condition.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If the statement “score >= 50” is True, what does it mean?

The score is less than 50

The score is exactly 50

The score is negative

The score is 50 or more

Answer explanation

The symbol >= means “greater than or equal to.”