python boot camp

python boot camp

University

10 Qs

quiz-placeholder

Similar activities

Python 1

Python 1

University

11 Qs

Quizizz PythonStart text1

Quizizz PythonStart text1

University

10 Qs

Python User Input Quiz

Python User Input Quiz

6th Grade - University

10 Qs

python cseB

python cseB

University

10 Qs

Проверим, что мы помним!

Проверим, что мы помним!

University

8 Qs

Python Basics

Python Basics

University

15 Qs

ГМУ2022 типа данных и условия

ГМУ2022 типа данных и условия

University

9 Qs

Repaso Clase 2

Repaso Clase 2

University

11 Qs

python boot camp

python boot camp

Assessment

Quiz

Computers

University

Hard

Created by

SECE IT

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

x = 5 y = x y = 10 print(x)

5

10

None

Error

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

print(2 ** 3 ** 2)

512

64

256

36

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

def func(x, y=[]):

y.append(x)

return y

print(func(1))

print(func(2))

print(func(3, []))

print(func(4))

[1] [2] [3] [4]

[1] [1, 2] [3] [1, 2, 4]

[1] [2] [3] [4]

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

x = 5

print(x == 5 and x < 10 or x > 10)

True

False

Error

None

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

print(2** (3** 2))

512

64

729

None of the above

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

x = "Hello"

y = 3

print(x * y)

'HelloHelloHello'

'Hello3'

Error

None

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

a = [1, 2, 3, 4]

b = a

b.append(5)

print(a)

[1, 2, 3, 4]

[1, 2, 3, 4, 5]

[5, 1, 2, 3, 4]

Error

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?