Year8_Python_L4_Starter

Year8_Python_L4_Starter

8th - 9th Grade

9 Qs

quiz-placeholder

Similar activities

ASK Tingkatan 2 Berlian: Jenis Data

ASK Tingkatan 2 Berlian: Jenis Data

8th Grade

10 Qs

Unit 4 Review

Unit 4 Review

9th - 12th Grade

11 Qs

Python Basics Quiz

Python Basics Quiz

9th - 12th Grade

10 Qs

class VIII Test

class VIII Test

8th Grade

10 Qs

Classroom Starters Python

Classroom Starters Python

9th - 12th Grade

6 Qs

PLTW 1.1.5 Guess a Number 1 Player

PLTW 1.1.5 Guess a Number 1 Player

9th Grade

10 Qs

KUIZ PERSEKITARAN KOD ARAHAN

KUIZ PERSEKITARAN KOD ARAHAN

8th - 10th Grade

10 Qs

Class VIII_Basic Python Programming Quiz

Class VIII_Basic Python Programming Quiz

8th Grade

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