9/24 PF Daily Do Now

9/24 PF Daily Do Now

9th Grade

5 Qs

quiz-placeholder

Similar activities

Understanding User Interfaces and Programming

Understanding User Interfaces and Programming

9th Grade - University

10 Qs

9A Q2 ( 19 to 23 October )

9A Q2 ( 19 to 23 October )

9th Grade

10 Qs

TIK SD NURUL ISLAM

TIK SD NURUL ISLAM

5th Grade - University

10 Qs

Vocabulary Evaluation

Vocabulary Evaluation

9th - 12th Grade

10 Qs

Common Webpage Buttons

Common Webpage Buttons

8th Grade - University

10 Qs

Увлекательный мир Python

Увлекательный мир Python

6th Grade - University

9 Qs

My digital Footprint Quiz

My digital Footprint Quiz

3rd Grade - University

8 Qs

P8 LEVEL 2 FIKS

P8 LEVEL 2 FIKS

1st Grade - University

6 Qs

9/24 PF Daily Do Now

9/24 PF Daily Do Now

Assessment

Quiz

Information Technology (IT)

9th Grade

Hard

Created by

Amy Austin

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does 7 > 10 evaluate to?

True

False

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which operator checks if two values are not equal?

=

==

!=

=

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? x = 12 if x % 2 == 0: print("Even") else: print("Odd")

Even

Odd

Error

None of the above

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does 5 == 5 evaluate to?

True

False

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?
x = 7
if x % 2 != 0:
    print("Odd")
else:
    print("Even")

Odd

None of the above

Error

Even