Python Basics (CodeHS)

Python Basics (CodeHS)

7th - 12th Grade

20 Qs

quiz-placeholder

Similar activities

Вспомним Python

Вспомним Python

9th Grade

15 Qs

Functions in Python

Functions in Python

9th - 12th Grade

16 Qs

Y8 Python

Y8 Python

7th - 8th Grade

20 Qs

Python Revision

Python Revision

8th Grade

15 Qs

Python Basics

Python Basics

8th - 12th Grade

23 Qs

Python - Assessment Week

Python - Assessment Week

8th - 9th Grade

19 Qs

Python Quiz

Python Quiz

8th Grade

20 Qs

Year 8 Computing Revision Quiz

Year 8 Computing Revision Quiz

8th Grade

20 Qs

Python Basics (CodeHS)

Python Basics (CodeHS)

Assessment

Quiz

Computers

7th - 12th Grade

Hard

Created by

Trevor McGarrah

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