Subject not found.
1.

Find the output?Program:x = 0 # global variabledef add ( ):global xx = x + 5 # increment by 2print (“Inside add ( ) function x value is:” , x)add ( )print (“In main x value is x)

Answer»

Output:

Inside add ( ) function x value is: 5.

In main x value is: 5



Discussion

No Comment Found