Module 2 Mini Quiziz Review

Module 2 Mini Quiziz Review

9th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

Computational Thinking - 1

Computational Thinking - 1

11th - 12th Grade

10 Qs

Python Programming - Iteration

Python Programming - Iteration

9th Grade

12 Qs

Pseudocode

Pseudocode

8th - 9th Grade

9 Qs

FOR Loops Python

FOR Loops Python

9th - 12th Grade

12 Qs

Computer Science

Computer Science

3rd - 12th Grade

12 Qs

Programming - Iteration, Basic Programming Constructs & Loop

Programming - Iteration, Basic Programming Constructs & Loop

2nd - 12th Grade

10 Qs

Programming - Algorithms in Pseudocode & Flow Diagrams

Programming - Algorithms in Pseudocode & Flow Diagrams

1st - 12th Grade

10 Qs

AP CSP Loops Practice

AP CSP Loops Practice

9th - 12th Grade

12 Qs

Module 2 Mini Quiziz Review

Module 2 Mini Quiziz Review

Assessment

Quiz

Computers

9th - 12th Grade

Easy

Created by

Ms. Morales

Used 3+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

In order to print:

Bring your umbrella!

is_sunny and is_raining both need to be FALSE

is_sunny or is_raining need to be FALSE

is_sunny and is_raining both need to be TRUE

only is_raining needs to be TRUE

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

In order to print:

Bring a hat!

is_sunny and is_raining both have to be TRUE

is_sunny has to be TRUE and is_raining has to be FALSE

is_sunny or is_raining have to be TRUE

is_sunny has to be FASLE and is_raining has to be TRUE

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

In order to print:

Bring a warm sweater!

is_sunny and is_windy BOTH need to be FALSE

is_sunny needs to be TRUE or is_windy needs to be TRUE

is_sunny and is_windy BOTH need to be TRUE

is_sunny needs to be FALSE or is_windy needs to be TRUE

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

What if the user is a member

of Gen X (ages 43 to 58)?

What would be the elif statement that

will print the message “You’re a part of Gen X.” ?

if age >= 43 and age <= 58:

elif age <= 43 and age >= 58:

elif age >= 43 and age <= 58:

if age <= 43 and age >= 58:

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

According to lines 3 and 4, what will the value of the secret_number variable be at the start of the program?

10

a random number between 1 to 10

1

a random number between 0 to 10

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image
  1. According to lines 10 through 18, what will cause the while loop to end?

when guess is not equal to secret_number

when guess is less than or equal to secret_number

when guess is greater than or equal to secret_number

when guess is equal to secret_number

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

According to line 6, line 12, and the while loop, how will the value of the attempts variable change throughout the program as the user interacts with it?

The value of attempts will stay 0 every time the while loop is repeated.

The value of attempts will increase by 2 every time the while loop is repeated.

The value of attempts will increase by 1 every time the while loop is repeated.

The value of attempts will decrease by 1 every time the while loop is repeated.