Week 6 Quiz

Week 6 Quiz

University

20 Qs

quiz-placeholder

Similar activities

BPP UNIT-1,2 AID

BPP UNIT-1,2 AID

University

20 Qs

CodeHS Basic Data Structures in Python

CodeHS Basic Data Structures in Python

University

20 Qs

files

files

University

22 Qs

PYTHON BOOTCAMP

PYTHON BOOTCAMP

University

15 Qs

COMP177 Mod 8 - Lists & Dictionaries

COMP177 Mod 8 - Lists & Dictionaries

University

16 Qs

Python Lists

Python Lists

University

20 Qs

Python Programming

Python Programming

University

20 Qs

while loop

while loop

University

15 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?