Question

Select the result obtained when you run the following program:

seq = [1]
seq[1] = 2
print(seq)

Question

Select the result obtained when you run the following program:

seq = [1, 2]
seq[1] = min(seq)
print(seq)

Question

Select the result obtained when you run the following program:

seq = [4, 3, 2, 1]
print(sorted(seq[1:3]))

Question

Select the result obtained when you run the following program:

seq = [1, 3, 1, 3, 2, 1, 2]
largest = max(seq)
print(seq.count(largest))

Question

Select the result obtained when you run the following program:

seq = [1, 2, 3, 4]
print(seq.append(5))

Question

Select the result obtained when you run the following program:

seq = [1, 2, 3, 4]
seq.remove(3)
seq.insert(2, 1)
print(seq)

Question

Select the result obtained when you run the following program:

seq = [4, 3, 2, 1]
seq = seq + 5
sorted(seq)
print(seq)

Question

Select the result obtained when you run the following program:

seq = [4, 3, 2, 1]
seq.remove(3).sort()
print(seq)

Question

Select all choices that are true about the given function. There may be more than one correct choice.

def check(seq):
    smallest = min(seq)
    return smallest in seq

Question

Select all choices that are true about the given function. There may be more than one correct choice.

def check(seq):
    if len(seq) > 0:
        seq[0] = min(seq)