Module 2 Mini Quiziz Review

Module 2 Mini Quiziz Review

9th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

LOOPS IN C++

LOOPS IN C++

10th Grade - University

10 Qs

Python Loops

Python Loops

9th - 12th Grade

10 Qs

Intro to Scratch 2

Intro to Scratch 2

KG - University

12 Qs

Programming Basics

Programming Basics

9th - 10th Grade

10 Qs

Quiz 16 - Arrays and Loops

Quiz 16 - Arrays and Loops

11th Grade

10 Qs

SQL

SQL

11th - 12th Grade

12 Qs

Scratch Coding Vocabulary

Scratch Coding Vocabulary

9th Grade

10 Qs

Loops & Conditional Blocks in Scratch

Loops & Conditional Blocks in Scratch

6th - 12th Grade

10 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.