Question:

Consider the function header given below and identify the correct call statement(s) to call the below function.
def fun(x, y=10, z=15);
A. fun(30)
B. fun(30, 40)
C. fun()
D. fun(10, 20, 30)
E. fun(10, 20, 30, 40)
Choose the correct answer from the options given below :

Updated On: Sep 23, 2024
  • A, B and E
  • A, B and D
  • B, C and D
  • B, D and E
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is B

Solution and Explanation

The correct option is (B) :A, B and D.
Was this answer helpful?
0
0