What will be the output of the following program.?

(a) 1       def increase (x):      (b) a=1

     2          a=a+x                      def f():

     3          return                          a=10

     4                                          print(a)

     5      a=20

     6    b=5

     7    increase (b)

     8    print(a) 

 

 

Answer:

(a)

Question 11 - Teachoo.jpg

This code gives an error as there is no value assigned to ‘a’ in the function ‘increase( )’.

(b)

Question 11(b) - Teachoo.jpg

The code gives an output 1 .

Ask a doubt
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.