Contents

Which of the following commands will create a list?
a) list1 = list()                       
b) list1 = []
c) list1 = list([1, 2, 3])          
d) all of these

d

Explanation: Execute in the shell to verify


What is the output when we execute list(“hello”)?
a) [‘h’, ‘e’, ‘l’, ‘l’, ‘o’]
b) [‘hello’]
c) [‘llo’]                                 
d) [‘olleh’]

a

Explanation: Execute in the shell to verify.


Suppose listExample is [‘h’,’e’,’l’,’l’,’o’], what is len(listExample)?
a) 5                                                        
b) 4
c) None                                 
d) Error

a

Explanation: Execute in the shell and verify.


Suppose list1 is [2445,133,12454,123], what is max(list1)?
a) 2445                                 
b) 133
c) 12454                                               
d) 123

c

Explanation: Max returns the maximum element in the list.


Suppose list1 is [3, 5, 25, 1, 3], what is min(list1)?
a) 3                                                        
b) 5
c) 25                                      
d) 1

d

Explanation: Min returns the minimum element in the list.


Suppose list1 is [1, 5, 9], what is sum(list1)?
a) 1                                                        
b) 9
c) 15                                      
d) Error

c

Explanation: Sum returns the sum of all elements in the list.