9/24 PF Daily Do Now

9/24 PF Daily Do Now

9th Grade

5 Qs

quiz-placeholder

Similar activities

POSTEST INFORMATIKA

POSTEST INFORMATIKA

9th Grade - University

10 Qs

ITS Python 迴圈課堂測驗

ITS Python 迴圈課堂測驗

6th Grade - University

10 Qs

Digital Footprint

Digital Footprint

9th - 12th Grade

9 Qs

ICT, Phishing and Malware

ICT, Phishing and Malware

7th - 12th Grade

6 Qs

Kiểm tra Kiểu Xác thực Dữ liệu

Kiểm tra Kiểu Xác thực Dữ liệu

9th - 12th Grade

5 Qs

Ultrasonic Sensor - L1

Ultrasonic Sensor - L1

6th Grade - University

10 Qs

Kuis Informatika

Kuis Informatika

9th Grade

10 Qs

Algoritma

Algoritma

7th Grade - University

10 Qs

9/24 PF Daily Do Now

9/24 PF Daily Do Now

Assessment

Quiz

Information Technology (IT)

9th Grade

Practice Problem

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