Python - 3.1.14 - Output Quiz

Python - 3.1.14 - Output Quiz

12th Grade

6 Qs

quiz-placeholder

Similar activities

python basics

python basics

9th - 12th Grade

11 Qs

10 Important Python Fundamentals Questions

10 Important Python Fundamentals Questions

12th Grade

10 Qs

Pseudocode WHILE Loops

Pseudocode WHILE Loops

10th - 12th Grade

10 Qs

Python Variables

Python Variables

7th - 12th Grade

10 Qs

Python Level 1 - Quiz #3

Python Level 1 - Quiz #3

5th - 12th Grade

9 Qs

Binary Logic

Binary Logic

8th - 12th Grade

10 Qs

GDScript Quiz - Lesson 3 - Conditional statements & Iteration

GDScript Quiz - Lesson 3 - Conditional statements & Iteration

12th Grade

10 Qs

AP Computer Science-Quiz 2(G10)

AP Computer Science-Quiz 2(G10)

9th - 12th Grade

10 Qs

Python - 3.1.14 - Output Quiz

Python - 3.1.14 - Output Quiz

Assessment

Quiz

Computers

12th Grade

Hard

Created by

PHILLIP VEET

Used 6+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following snippet? x = 10

y = 4

z = 12

print(x > y)

print(y > z)

True

Flase

True

True

False

False

False

True

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following snippet? x, y, z = 6, 11, 9

print(x > z)

print((y - 5) == x)

True

False

True

True

False

False

False

True

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following snippet? x, y, z = 6, 9, 7

x, y, z = z, y, x

print(x > z)

print((y - 2) == x)

True

False

True

True

False

False

False

True

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of this snippet?

True

else

False

else

True

True

else

True

False

True

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of this snippet?

four

five

six

one

two

three

four

five

four

five

one

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of this snippet?

one

two

three

one

two

three

four

one

four

one

two