Practical Based Questions:
1. What is the output of the following code:
a = 11
b = 20
c = a + b
print(c)
Answers
Answered by
1
Answer:
output:
31
Explanation:
c=a+b
c=11+20
c=31
Similar questions