Python Basics (CodeHS)

Python Basics (CodeHS)

7th - 12th Grade

20 Qs

quiz-placeholder

Similar activities

Python basics yr7

Python basics yr7

6th - 9th Grade

20 Qs

Python Basics Review

Python Basics Review

10th Grade

18 Qs

Unit 3 Python TEST

Unit 3 Python TEST

11th - 12th Grade

20 Qs

Unit 1 Test

Unit 1 Test

9th - 12th Grade

20 Qs

2.3 Robust Programs MCQs L2

2.3 Robust Programs MCQs L2

10th - 11th Grade

20 Qs

Python - тест

Python - тест

1st - 12th Grade

15 Qs

CodeHS - Intro to Python - Basics and Console Interaction

CodeHS - Intro to Python - Basics and Console Interaction

9th Grade - Professional Development

20 Qs

Python

Python

9th Grade

15 Qs

Python Basics (CodeHS)

Python Basics (CodeHS)

Assessment

Quiz

Computers

7th - 12th Grade

Hard

Created by

Trevor McGarrah

Used 68+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the final result of the following expression?

5 + 4 * 3 - 1

26
18
13
16

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the final result of the following expression?

(5 - 3) * 2 - 4

-8
0
12
error

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the final result of the following expression?

(3 + (8 / 2 - 2)) ** 2

7
error
25
3

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement will cause an error?
print("2" + 3)
print(2 * 3)
print(2 * "3")
print("2" * 3)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement will cause an error? The variable name has been previously defined as name = "Susan".
print("Hello" + Susan)
print("Hello", name)
print("Hello " + name)
print(f"Hello {name}")

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Based on the following code, what gets printed to the screen?

greeting = 7

name = "Bob"

greeting = "Hello"

print(type(greeting))

7
<class 'int'>
"Hello"
<class 'str'>

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Based on the following code, what gets printed to the screen?

greeting = 7

name = "Bob"

greeting = "Hello"

print(greeting)

7
<class 'int'>
"Hello"
<class 'str'>

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?