Computer Science - Class 12
Solutions to CBSE Sample Paper - Computer Science Class 12

Predict the output of the following code:

def Swapper (X,Y=5) :

    X=X+Y

    Y=X-Y

    return Y

A=10

B=15

B= Swapper (A,B)

print(A,B, sep = '^')

A= Swapper (A)

print(A,B,sep= '^', end='***')

Answer:

Answer by student

The output of the code is:

10^10

10^10***

Detailed answer by teachoo

The rest of the post is locked. Join Teachoo Black to see the full post.

Go Ad-free
Davneet Singh's photo - Co-founder, Teachoo

Made by

Davneet Singh

Davneet Singh has done his B.Tech from Indian Institute of Technology, Kanpur. He has been teaching from the past 14 years. He provides courses for Maths, Science, Social Science, Physics, Chemistry, Computer Science at Teachoo.