wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Python list

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

Select the right translation of the word “array”

a)

Элемент

b)

Массив

c)

Мәні

d)

Жол

2.

Select the right translation of the word “value”

a)

Шама

b)

Көлем

c)

Жылдамдық

d)

Массив

3.

Әр түрлі типтегі объектілерді жинауға арналған деректер құрылымы.

a)

Индекс

b)

Мәліметтер

c)

Элемент

d)

Тізім

4.

List indices start at _______.

a)

1

b)

2

c)

0

d)

3

5.

Select the right translation of the word “кірістіру”

a)

insert

b)

choose

c)

output

d)

print

6.

Select the right translation of the word “кеңейту”

a)

insert

b)

extend

c)

add

d)

element

7.

Which function uses to add elements to the list?

a)

addition

b)

multiplication

c)

append

d)

application

8.

Which method is used to add multiple elements at the same time at the end of the list

a)

extend

b)

append

c)

insert

d)

addition

9.

Which method is used to add element at the desired position?

a)

extend

b)

append

c)

position

d)

insert

10.

Select the output of the program code:

List=['Python', 'List']

for i in range(1, 4):

List.append(i)

print(List)

a)

['Python', 'List']

b)

['Python', 'List', 1, 2, 3, 4]

c)

['Python', 'List', 1, 2, 3]

d)

['Python', 'List', 0, 1, 2, 3, 4]