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

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

9th Grade

10 Qs

quiz-placeholder

Similar activities

Функции def

Функции def

9th - 12th Grade

10 Qs

Python Final Assessment

Python Final Assessment

4th - 12th Grade

10 Qs

Python Code Review

Python Code Review

9th Grade

10 Qs

Term (3) PC8.1 : Describe a function

Term (3) PC8.1 : Describe a function

9th Grade

7 Qs

Recursion in Java

Recursion in Java

9th - 12th Grade

10 Qs

Hangman Game - Programming Questions

Hangman Game - Programming Questions

7th - 11th Grade

15 Qs

LUA Test

LUA Test

9th Grade - University

10 Qs

Python - Loops & Lists

Python - Loops & Lists

7th - 11th Grade

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