Python CodeHS Standards: Number Guessing Game

Python CodeHS Standards: Number Guessing Game

10th Grade

15 Qs

quiz-placeholder

Similar activities

Excel Computer High School

Excel Computer High School

9th - 12th Grade

10 Qs

New Year 2022 party

New Year 2022 party

1st - 10th Grade

12 Qs

Crash Course Computer Science #6 - Registers and RAM

Crash Course Computer Science #6 - Registers and RAM

9th - 12th Grade

16 Qs

13.3.8 - Impact Printer Technology Quiz

13.3.8 - Impact Printer Technology Quiz

10th Grade

18 Qs

Logo Quiz

Logo Quiz

KG - University

10 Qs

Weekly Quiz 1

Weekly Quiz 1

4th Grade - Professional Development

10 Qs

Computational thinking - EQ

Computational thinking - EQ

10th Grade

20 Qs

แบบฝึกหัดที่ 1 วิชาการสร้างสื่อดิจิตอล

แบบฝึกหัดที่ 1 วิชาการสร้างสื่อดิจิตอล

10th - 12th Grade

10 Qs

Python CodeHS Standards: Number Guessing Game

Python CodeHS Standards: Number Guessing Game

Assessment

Quiz

Computers

10th Grade

Hard

Created by

PRESTON COLE

Used 6+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code snippet? guess = '65.83' print(float(guess) + 1)

66.83

66

65.84

66.8

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which operator should be used in place of "?" to make the following expression evaluate to True? (5 ? 3) and (2 < 4)

>

<=

!=

==

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of the following? print(17 % 3)

5

4

3

2

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a number guessing game, which conditional statement would check if `guess` is equal to `15`?

if guess = 15:

if guess == 15:

if guess: 15

if guess is 15:

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the following loop print for a number guessing game where `number` is `10`? for i in range(3): if i == number: print("Correct!") break print("Incorrect!")

Correct!

Incorrect!

Correct! Incorrect! Incorrect!

Incorrect! Incorrect! Incorrect!

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In which case will the loop continue indefinitely? while guess != number: guess = int(input("Enter your guess: "))

`guess` is initialized as a string

`number` changes within the loop

`guess` is initialized with the same value as `number`

`input` function is not used

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In Python, what symbol is used to begin a comment?

//

/*

#

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?