Ques 1 Datatype
Which of the following is an immutable datatype?
a) list
b) tuple
c) Both (a) and (b)
d) None of the above.
Ques 2 Datatype
Which of the following is a mutable datatype?
a) list
b) tuple
c) Both (a) and (b)
d) None of the above.
Ques 3 Datatype
What is the output of the following Python Code?
x=(1,2,3,4,5) x[1]=3 print(x)
Ques 4 Datatype
In which datatype are the *kwargs stored, when passed into a function?
a) List
b) Tuple
c) Dictionary
d) String