logo

Crowdly

Browser

Add to Chrome

Технології програмування, частина 1 [05914]

Looking for Технології програмування, частина 1 [05914] test answers and solutions? Browse our comprehensive collection of verified answers for Технології програмування, частина 1 [05914] at vns.lpnu.ua.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

Метод append() додає об'єкт в початок списку

26%
74%
View this question

Що виведе наступний код:

matrix = [[0] * 3] * 3

matrix[1][1] = 1

print(matrix)

View this question

У результаті виконання наступного фрагменту коду

lst = list("String")

буде створено список

["String"]

27%
73%
View this question

Метод insert() додає один об'єкт в зазначену позицію списку

96%
4%
View this question

Що виведе цей код:

lst = ['True', 'False', 0, 1, False, True, 2.0]

lst.remove(True)

lst.remove(False)

print(lst)

View this question

Виберіть фрагменту коду, який створює список з п’яти нулів lst = [0, 0, 0, 0, 0]

View this question

Списки в Python належать до послідовностей

98%
2%
View this question

Списки в Python належать до незмінюваних типів даних

22%
78%
View this question

Що виведе цей код:

x = [0]*3

x[0] = [1]

x[1] = x[0]

x[0][0] = 99

print(x)

View this question

Що виведе цей код:

x = [1, 2, 3]

y = [1, 2, 3]

print(x is y)

View this question

Want instant access to all verified answers on vns.lpnu.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome