Write the output of the following statements:
1. >>>print(30+5)
2. >>>print("30+5")
3. >>>print("30+5=”, 30+5)
4. >>>print(“30”+5)
Answers
Answered by
0
Answer:
3. 35
Explanation:
only 3 one will give output because the coding of 1,2&4 are not correct.
Answered by
0
Answer:
1. 35
2. 30+5
3. 30+5= 35
4. Error
Similar questions