
Python-1
Authored by Babayeva xidməti"
Specialty
University
Used 1+ times

AI Actions
Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...
Content View
Student View
11 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Что выводит следующий код?
x = 5
y = 2
print(x // y)
2.5
2
3
5
2.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Какой результат будет возвращен в следующем коде?
def func(x):
if x == 0:
return 0
else:
return func(x - 1)
print(func(3))
Error
1
0
3
3.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Какой тип данных будет иметь переменная a после выполнения следующего кода?
a = 10 / 3
int
float
str
complex
4.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Что выведет следующий код?
x = [1, 2, 3]
y = x
y[0] = 99
print(x)
[99, 2, 3, 4]
Error
[99, 2, 3]
[1, 2, 3]
5.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Что выведет этот код?
x = [1, 2, 3]
y = x[:]
y[0] = 99
print(x)
[99, 2, 3]
[1, 2, 3]
[99, 2, 3]
Ошибка
6.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Какой будет результат следующего кода?
x = [1, 2, 3]
y = [4, 5, 6]
z = x + y
print(z)
[1, 2, 3, 4, 5, 6]
[5, 7, 9]
[1, 2, 3]
[1, 4, 2, 5, 3, 6]
7.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Что будет выведено этим кодом?
def foo(x, y=10):
return x + y
print(foo(5))
50
5
15
10
Access all questions and much more by creating a free account
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple
Others
Already have an account?