What is the output of the following code:
def multiply(a, b=2):
return a * b
result = multiply(4)
print(result)
return a * b
result = multiply(4)
print(result)
What is the output of the following code:def multiply(a, b=2): Correct Answer 2
return a * b
result = multiply(4)
print(result)
মোঃ আরিফুল ইসলাম
Feb 20, 2025