WELCOME TO PYTHON PROGRAMMING QUIZ!!!

1)Which of the following is the key,value pair?

List
Dictionary
Tuple


2)What is the the output?
l=[2,3,5,7,11]
print(l[5])

11
List index out of bound
5


Name one application for python.

Robotics
Data Science
All of these


4)Which is immutable?

String
List
All of these


5)What is the complexity of dictionary?

O(n)
O(1)
O(n**2)