You are on page 1of 5

Give the output of the following .

a) A=1
A+=2
Print(a)
b) print (3+4)

print(3 - 4)

print(3*4) print(3/4)

print(3%2)

print(3 **4)

c) a=20
if (a> =22)
print(“if”)
elif(a>=21)
print(“elif”)
else
print(“else”)

d)

You might also like