Python Basics (CodeHS)

Python Basics (CodeHS)

7th - 12th Grade

20 Qs

quiz-placeholder

Similar activities

Intro to Python

Intro to Python

6th - 8th Grade

20 Qs

GCSE J277 - 2.3.2 - Syntax and Logic Errors

GCSE J277 - 2.3.2 - Syntax and Logic Errors

7th Grade

20 Qs

python quiz

python quiz

12th Grade

20 Qs

Python Revision

Python Revision

8th Grade

15 Qs

Python basics yr7

Python basics yr7

6th - 9th Grade

20 Qs

Grade 12-Python selection&iteration

Grade 12-Python selection&iteration

11th - 12th Grade

15 Qs

Functions in Python

Functions in Python

9th - 12th Grade

16 Qs

Python Basics Review

Python Basics Review

10th Grade

18 Qs

Python Basics (CodeHS)

Python Basics (CodeHS)

Assessment

Quiz

Computers

7th - 12th Grade

Hard

Created by

Trevor McGarrah

Used 69+ 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?