Python Test 2

Python Test 2

8th Grade

20 Qs

quiz-placeholder

Similar activities

quiz dasar python

quiz dasar python

1st Grade - University

20 Qs

Spreadsheet

Spreadsheet

8th Grade - University

20 Qs

K8_Python_1_2

K8_Python_1_2

8th Grade

15 Qs

Program Development - Python: Code Basics 1

Program Development - Python: Code Basics 1

8th - 10th Grade

16 Qs

Python basics yr7

Python basics yr7

6th - 9th Grade

20 Qs

BZA Python Programming 3

BZA Python Programming 3

6th - 8th Grade

20 Qs

klasa 8 Python in, print

klasa 8 Python in, print

7th - 8th Grade

17 Qs

Programming Quiz

Programming Quiz

7th - 8th Grade

15 Qs

Python Test 2

Python Test 2

Assessment

Quiz

Computers

8th Grade

Hard

Created by

Quốc Thư

Used 7+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

x = 5

x = x == 5

print(x + 2)

7

2

True2

3

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following code snippet. What will be the final value of x?

x = 0

for i in range(1, 4):

.........for j in range(i):

..................x += i + j

print(x)

18

21

24

27

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following code print?

def func(x, y=[]):

.........y.append(x)

.........return y

print(func(1))

print(func(2))

[1][2]

[1, 2][1, 2]

[1][1, 2]

Error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be printed after executing this code?

x = [1, 2, 3]

y = x

x += [4, 5]

print(x)

print(y)

[1, 2, 3, 4, 5] and [1, 2, 3, 4, 5]

[1, 2, 3, 4, 5] and [1, 2, 3]

[1, 2, 3] and [4, 5]

Error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of the following expression?

print(1 < 2 < 3 == True)

True

False

Error

None

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is printed by the following code?

x = 10

x += x - x // x + x * 0

print(x)

A. 19

B. 9

C. 10

D. Error

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output?

def foo(x):

.........return x if x % 2 == 0 else x + 1

print(foo(foo(3)))

3

4

5

6

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?