Mod 3 Quiz 1

Mod 3 Quiz 1

9th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

CSS Quiz-I

CSS Quiz-I

11th Grade - Professional Development

10 Qs

Introduction to Python

Introduction to Python

9th Grade

10 Qs

Grade9_Revision(Embedded Systems)

Grade9_Revision(Embedded Systems)

10th Grade

10 Qs

Python L1 Quiz 4: Lists

Python L1 Quiz 4: Lists

1st - 12th Grade

10 Qs

if/else statements quiz

if/else statements quiz

9th Grade - University

10 Qs

C++. Recap. Nested if statement. Switch-case statement

C++. Recap. Nested if statement. Switch-case statement

7th - 12th Grade

5 Qs

Python Testing

Python Testing

9th - 12th Grade

10 Qs

RL Python Basics Quiz 1

RL Python Basics Quiz 1

9th - 12th 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