Multiple Choice
What is the output of the following program :
Def myfunc(a) :
A = a + 2
A = a * 2
Return a
Print myfunc(2)
A) 8
B) 16
C) Indentation Error
D) Runtime Error
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q25: What is the output of the following
Q26: Predict the output of following python programs<br>Dictionary1
Q27: What is the output of the following
Q28: What is the output of the following
Q29: 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
Q35: What is the output of the following