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

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

9th Grade

10 Qs

quiz-placeholder

Similar activities

Python Final Assessment

Python Final Assessment

4th - 12th Grade

10 Qs

Python Boolean and If

Python Boolean and If

9th - 12th Grade

10 Qs

Python

Python

1st - 12th Grade

10 Qs

SciVis II Unit 2 A

SciVis II Unit 2 A

9th - 12th Grade

14 Qs

Variables and data types

Variables and data types

4th - 12th Grade

12 Qs

9.2 Further programming

9.2 Further programming

9th Grade

12 Qs

S3 Python 1

S3 Python 1

8th - 10th Grade

12 Qs

Функции def

Функции def

9th - 12th Grade

10 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?