Year8_Python_L4_Starter

Year8_Python_L4_Starter

8th - 9th Grade

9 Qs

quiz-placeholder

Similar activities

Unit 2 Vocabulary, PLTW COM Science

Unit 2 Vocabulary, PLTW COM Science

9th - 12th Grade

9 Qs

operators(part-2_26/07)

operators(part-2_26/07)

9th Grade

10 Qs

Boolean Operators

Boolean Operators

6th - 8th Grade

10 Qs

Conditionals - codeHS mod4

Conditionals - codeHS mod4

9th - 12th Grade

10 Qs

Python Strings

Python Strings

8th - 12th Grade

14 Qs

IDT UNIT 3

IDT UNIT 3

9th - 12th Grade

12 Qs

ASK Ting 2: Pentaksiran Bab 3 (BTeks- Objektif)

ASK Ting 2: Pentaksiran Bab 3 (BTeks- Objektif)

8th - 9th Grade

14 Qs

Python Level 1 - Quiz #3

Python Level 1 - Quiz #3

5th - 12th Grade

9 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”