Week 6 Quiz

Week 6 Quiz

University

20 Qs

quiz-placeholder

Similar activities

Quiz on C Fundamentals for CSE & CST

Quiz on C Fundamentals for CSE & CST

University

20 Qs

Unit 3 Looping - Quiz

Unit 3 Looping - Quiz

9th Grade - University

20 Qs

Python Programming Quiz

Python Programming Quiz

9th Grade - University

20 Qs

python-2

python-2

University

23 Qs

Introduction to Python

Introduction to Python

University

15 Qs

Python Lists

Python Lists

University

20 Qs

Python MCQ

Python MCQ

University

20 Qs

Week 6 Quiz

Week 6 Quiz

Assessment

Quiz

Computers

University

Medium

Created by

Anthony G

Used 1+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to stop a while loop?

stop

break

end

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a valid way to store a player's name in a variable?

playerName = input()

playerName: input()

input = playerName()

playerName == input()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you define a list of items in Python?

my_list = [1, 2, 3]

my_list = {1, 2, 3}

my_list = (1, 2, 3)

my_list = <1, 2, 3>

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is an example of a game loop?

while game_running == True:

for game_running == True:

if game_running == True:

while game_running = True:

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following code do?

for i in range(3):

print(i)

Prints 0, 1, 2

Prints 1, 2, 3

Prints 0, 1, 2, 3

Prints 3, 2, 1

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following best describes a 'nested if statement'?

An if statement inside another if statement

Multiple if statements in a row

A loop inside an if statement

An if statement without an else

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the process of converting one datatype to another called?

Data conversion.

Type Casting.

Type Conversion.

Concatenation.

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?