Q151. What is the output of the following Python program using global variable modification?
#!/usr/bin/python ```python def fun2(): ``` globalb print'b:',b b=33 print'globalb:',b b=100 fun2() print'boutsidefun2′,b Ans. Output: b:100 globalb:33 boutsidefun2:33