Aparna Dhirde
Quiz por , criado more than 1 year ago

Quiz sobre Multiple Choice Questions -Lists, criado por Aparna Dhirde em 17-03-2020.

71
0
0
Aparna Dhirde
Criado por Aparna Dhirde mais de 4 anos atrás
Fechar

Multiple Choice Questions -Lists

Questão 1 de 13

1

What is the output when we execute list(“hello”)?

Selecione uma das seguintes:

  • [‘h’, ‘e’, ‘l’, ‘l’, ‘o’]

  • [‘hello’]

  • [‘llo’]

  • [‘olleh’]

Explicação

Questão 2 de 13

1

Suppose listExample is [‘h’,’e’,’l’,’l’,’o’], what is len(listExample)?

Selecione uma das seguintes:

  • 5

  • 4

  • none

  • error

Explicação

Questão 3 de 13

1

Suppose list1 is [2445,133,12454,123], what is max(list1)?

Selecione uma das seguintes:

  • 2445

  • 133

  • 12454

  • 123

Explicação

Questão 4 de 13

1

Suppose list1 is [1, 5, 9], what is sum(list1)?

Selecione uma das seguintes:

  • 1

  • 9

  • 15

  • error

Explicação

Questão 5 de 13

1

Suppose list1 is [2, 33, 222, 14, 25], What is list1[-1]?

Selecione uma das seguintes:

  • error

  • none

  • 25

  • 2

Explicação

Questão 6 de 13

1

To add a new element to a list we use which command?

Selecione uma das seguintes:

  • list1.add(5)

  • list1.append(5)

  • list1.addLast(5)

  • list1.addEnd(5)

Explicação

Questão 7 de 13

1

Suppose list1 is [3, 4, 5, 20, 5, 25, 1, 3], what is list1 after list1.reverse()?

Selecione uma das seguintes:

  • [3, 4, 5, 20, 5, 25, 1, 3]

  • [1, 3, 3, 4, 5, 5, 20, 25]

  • [25, 20, 5, 5, 4, 3, 3, 1]

  • [3, 1, 25, 5, 20, 5, 4, 3]

Explicação

Questão 8 de 13

1

Suppose listExample is [3, 4, 5, 20, 5, 25, 1, 3], what is list1 after listExample.extend([34, 5])?

Selecione uma das seguintes:

  • [3, 4, 5, 20, 5, 25, 1, 3, 34, 5]

  • [1, 3, 3, 4, 5, 5, 20, 25, 34, 5]

  • [25, 20, 5, 5, 4, 3, 3, 1, 34, 5]

  • [1, 3, 4, 5, 20, 5, 25, 3, 34, 5]

Explicação

Questão 9 de 13

1

Suppose listExample is [3, 4, 5, 20, 5, 25, 1, 3], what is list1 after listExample.pop(1)?

Selecione uma das seguintes:

  • [3, 4, 5, 20, 5, 25, 1, 3]

  • [1, 3, 3, 4, 5, 5, 20, 25]

  • [3, 5, 20, 5, 25, 1, 3]

  • [1, 3, 4, 5, 20, 5, 25]

Explicação

Questão 10 de 13

1

Suppose listExample is [3, 4, 5, 20, 5, 25, 1, 3], what is list1 after listExample.pop()?

Selecione uma das seguintes:

  • [3, 4, 5, 20, 5, 25, 1]

  • [1, 3, 3, 4, 5, 5, 20, 25]

  • [3, 5, 20, 5, 25, 1, 3]

  • [1, 3, 4, 5, 20, 5, 25]

Explicação

Questão 11 de 13

1

What will be the output of the following Python code?
>>>list("a#b#c#d".split('#'))

Selecione uma das seguintes:

  • [‘a’, ‘b’, ‘c’, ‘d’]

  • [‘a b c d’]

  • [‘a#b#c#d’]

  • [‘abcd’]

Explicação

Questão 12 de 13

1

What will be the output of the following Python code?
list1 = [1, 2, 3, 4]
list2 = [5, 6, 7, 8]
print(len(list1 + list2))

Selecione uma das seguintes:

  • 2

  • 4

  • 5

  • 8

Explicação

Questão 13 de 13

1

To which of the following the “in” operator can be used to check if an item is in it?

Selecione uma das seguintes:

  • Lists

  • Dictionary

  • Set

  • All of the mentioned

Explicação