Examveda

What will be the output of the following Python code?
def ram(x):
    print(x+1)
x=-2
x=4
ram(12)

A. 13

B. 10

C. 2

D. 5

Answer: Option A


This Question Belongs to Python Program >> Functions In Python

Join The Discussion

Related Questions on Functions in Python