Рекурсия (уй тапшырмасын текшеруу))

Рекурсия (уй тапшырмасын текшеруу))

9th Grade

10 Qs

quiz-placeholder

Similar activities

Python Review 5/23

Python Review 5/23

9th - 12th Grade

9 Qs

JavaScript#1

JavaScript#1

9th - 12th Grade

15 Qs

Iteration

Iteration

9th - 12th Grade

15 Qs

Python Input/Output

Python Input/Output

9th - 12th Grade

10 Qs

Python Strings

Python Strings

8th - 12th Grade

14 Qs

9класс python

9класс python

9th - 10th Grade

9 Qs

PC1.8 Evaluate computer program

PC1.8 Evaluate computer program

9th Grade

10 Qs

ABC in python

ABC in python

9th Grade

14 Qs

Рекурсия (уй тапшырмасын текшеруу))

Рекурсия (уй тапшырмасын текшеруу))

Assessment

Quiz

Computers

9th Grade

Medium

Created by

shairgul saatova

Used 6+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

бул функция тизменин эн кичине маанисин чыгарат?

min (a)

sort (a)

pop (a)

round (a)

2.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

a = [16, 29, -5, -11, 23, 14, -7, 23, 18]

print (a.index (23))

Жыйынтыгын корсот

4

2

5

7

3.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

a = range (1,20)

m = max (a)

print (m)

Жыйынтыгы корсот

15

19

2

1

4.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

def fact(n):

if n==1:

return 1

return fact(n-1)*n

print(fact(5))

120

720

25

5

5.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

def rec(x):

if x<5:

print(x,end=" ")

rec(x+1)

rec(1)

Жыйынтыгы кандай болот?болот.

4 3 2 1

5 4 3 2 1

1 2 3 4

1 2 3 4 5

6.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

a = range (1, 30)

m = min (a)

print (m)

1

3

29

0

7.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Кайсы бир объект озун озу кайталаган процесс эмне деп аталат?

Индекс

Элемент

Рекурсия

Массив

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?