List

List

11th Grade

22 Qs

quiz-placeholder

Similar activities

Массив

Массив

11th Grade

20 Qs

УБТ Python  тілі

УБТ Python тілі

11th Grade

20 Qs

Программалау тілі

Программалау тілі

9th - 12th Grade

20 Qs

Блиц по информатике

Блиц по информатике

1st - 11th Grade

18 Qs

#1 Конкурс

#1 Конкурс

11th Grade

20 Qs

Основы программирования на Python

Основы программирования на Python

9th - 11th Grade

17 Qs

Python 80-99

Python 80-99

11th Grade

21 Qs

9-1 Python

9-1 Python

11th Grade

20 Qs

List

List

Assessment

Quiz

Computers

11th Grade

Medium

Created by

Gulnaz Mametova

Used 8+ times

FREE Resource

22 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Берілген программа кодының нәтижесін анықтаңыз:

fruits=["apple","banana","orange", "kiwi"]

print (fruits[1:3])

banana, orange

banana, orange, kiwi

apple, banana, orange

banana, kiwi

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Берілген программа кодының нәтижесін анықтаңыз:

City=[‘Almaty’, ‘Moscow’, ‘Berlin’, ‘New York’, ‘Paris’]

print(City[3])

New York

Berlin

Moscow

Almaty

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Берілген программа кодының нәтижесін анықтаңыз:

candies=[‘mars’, ‘snickers’, ‘twix’, ‘kinder’]

candies[3]=’mars’

candies[0]=’kinder’

print(candies)

[‘mars’, ‘kinder’, ‘snickers’, ‘twix’]

[‘twix’, ‘mars’, ‘snickers’, ‘kinder’]

[‘mars’, ‘twix’, ‘snickers’, ‘kinder’]

[‘kinder’, ‘snickers’, ‘twix’, 'mars']

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Берілген программа кодының нәтижесін анықтаңыз:

Country=[‘Kazakhstan’, ‘Germany’, ‘Italy’, ‘The USA’, ‘Russia’]

  Country.pop(3)

print(Country)     

                                                                                         

[‘Kazakhstan’, ‘Germany’, ‘Russia’]

[‘Kazakhstan’, ‘Germany’, ‘Italy’,‘Russia’]

[‘Kazakhstan’, ‘Germany’, ‘The USA’, ‘Russia’]

[‘Kazakhstan’, ‘Italy’, ‘The USA’, ‘Russia’]

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Берілген программа кодының нәтижесін анықтаңыз:

a=[1,2]

a.append(3)

a.append(5)

print(a)  

                                                                                         

[1, 2, 3, 5]

[1, 2, 3, 4]

[1, 2, 5, 3]

[1, 2, 3]

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Берілген программа кодының нәтижесін анықтаңыз:

a=[1,2,4,5]

a.insert(1,3)

print(a)

                                                                                         

[1, 2, 3, 4, 5]

[1, 2, 4, 3, 5]

[1, 2, 5, 3]

[1, 3, 2, 4, 5]

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Массив элементтерін өсу ретімен сұрыптайтын программа кодын толықтырыңыз:

A=[1,12, 4, 7, 9]

___________

print(A)

a.sort()

A.sort(reverse=True)

A=sort()

A.sort()

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?