Year8_Python_L4_Starter

Year8_Python_L4_Starter

8th - 9th Grade

9 Qs

quiz-placeholder

Similar activities

Python Programming Basics

Python Programming Basics

7th - 11th Grade

12 Qs

Python Basics

Python Basics

6th Grade - University

10 Qs

Python Quiz - 4

Python Quiz - 4

6th - 8th Grade

10 Qs

CodeHS 2.8 Comparison Operators

CodeHS 2.8 Comparison Operators

9th - 12th Grade

13 Qs

ICT 9 - LESSON 1: CONNECTING DATA THROUGH OPERATORS

ICT 9 - LESSON 1: CONNECTING DATA THROUGH OPERATORS

9th Grade

14 Qs

Python Comparison Operators

Python Comparison Operators

8th - 11th Grade

13 Qs

Basic Python Programming_Class VIII

Basic Python Programming_Class VIII

8th Grade

10 Qs

PYTHON

PYTHON

9th Grade

14 Qs

Year8_Python_L4_Starter

Year8_Python_L4_Starter

Assessment

Quiz

Computers

8th - 9th Grade

Hard

Created by

Kayley Budd

Used 2+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What type of operator is ==?

Boolean

Python

Mathematical

Comparison

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What type of operator is AND?

Boolean

Python

Comparative

Optional

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What type of operator is <?

Boolean

Python

Comparative

Mathematical

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What type of operator is NOT?

Boolean

Python

Mathematical

Comparative

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which operator means: “greater than or equal to” ?

<=

==

>=

!=

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which operator means: “not equal to” ?

>=

!=

==

<

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of this comparison: 65 <= 56 ?

True

False

121

9

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of this comparison: 65 != 56

10

True

False

6

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

age = 16

if age >= 16 and age <= 32:

    print("You can join the Army.")

else::

    print("You can't join the Army.")

True

False

“You can join the Army” 

“You can’t join the Army”