Mod 3 Quiz 1

Mod 3 Quiz 1

9th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

python basics

python basics

9th - 12th Grade

11 Qs

Python quiz

Python quiz

10th Grade - Professional Development

10 Qs

2.2.1 (d) Variables

2.2.1 (d) Variables

12th Grade

10 Qs

Quiz1_HPB2021_2010t1

Quiz1_HPB2021_2010t1

1st - 12th Grade

10 Qs

CSC401_FSKS 4.1 to 4.10

CSC401_FSKS 4.1 to 4.10

9th Grade

11 Qs

AP Computer Science-Quiz 2(G10)

AP Computer Science-Quiz 2(G10)

9th - 12th Grade

10 Qs

Python Basics: Operators and Variables

Python Basics: Operators and Variables

10th Grade

10 Qs

conditional constructs in Java

conditional constructs in Java

10th Grade

10 Qs

Mod 3 Quiz 1

Mod 3 Quiz 1

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Scott Freeman

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following snippet?

x = 5

y = 10

z = 8

print (x > y)

print (y >x)

False

True

True

True

False

False

Ture

False

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following snippet?

x, y, z = 5, 10, 8

print (x >y)

print ((y-5) == x)

False

True

True

True

True

False

False

False

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following snippet?

x, y, z = 5, 10, 8

x, y, z = z, y, x

print (x >z)

print ((y-5) == x)

True

False

True

True

False

True

False

False

4.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Media Image

What is the output of the following snippet?

True

True

else

True

False

False

else

True

True

False

True

else

5.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Media Image

What is the output of the following snippet?

two

three

four

five

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of the following snippet?

one

two

two

three

three

four

four

one