
Вопросы по массивам в Python
Authored by Гимназия Корнеевская
Computers
3rd Grade
Used 1+ times

AI Actions
Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...
Content View
Student View
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Как создать массив в Python?
arr = {1, 2, 3}
arr = [1, 2, 3]
arr = (1, 2, 3)
arr =
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
С какого числа начинается индексация элементов массива в Python?
1
0
-1
2
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Как обратиться к третьему элементу массива arr = [10, 20, 30, 40]?
arr[1]
arr[2]
arr[3]
arr[0]
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Как изменить второй элемент массива arr = [5, 15, 25] на 50?
arr[1] = 50
arr[2] = 50
arr[0] = 50
arr.change(1, 50)
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Как добавить элемент в конец массива?
arr.add(5)
arr.insert(5)
arr.append(5)
arr.push(5)
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Как удалить элемент по значению?
arr.pop(5)
arr.remove(5)
arr.delete(5)
arr.clear(5)
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Какая функция удаляет элемент по индексу?
remove()
delete()
pop()
clear()
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?