Multiple Choice
What is the output of the following program?
Def REVERSE(L) :
(L) reverse()
Return(L)
Def YKNJS(L) :
List = list()
List.extend(REVERSE(L) )
Print(List)
L = [1, 3.1, 5.31, 7.531]
YKNJS(L )
A) [1, 3.1, 5.31, 7.531]
B) [7.531, 5.31, 3.1, 1]
C) IndexError
D) AttributeError: „NoneType? object has no attribute „REVERSE?
Correct Answer:

Verified
Correct Answer:
Verified
Q30: What is the output of the following
Q31: What is the output of the following
Q32: Which module in Python supports regular expressions?<br>A)re<br>B)regex<br>C)pyregex<br>D)None
Q33: What is the output of the following?<br>Elements
Q34: Program code making use of a given
Q36: What is the output of the following
Q37: What is the output of the following
Q38: What is the output of the following?<br>Def
Q39: What is the output of the following
Q40: What is the length of sys.argv?<br>A)number of