Ask Question
8 March, 14:44

Predict the output a b = 12 13 print (print (a+b))

+2
Answers (1)
  1. 8 March, 15:03
    0
    Invalid Syntax

    We if correct the syntax then output is 25

    Explanation:

    In the given question a=12, b=13 if we used print (print (a+b)) this syntax then invalid syntax will occur if we correct the syntax then correct syntax program is given below

    a = 12

    b=13

    print (a+b)

    it gives 25 as output because we used "+" operator between a and b variable this operator provide addition between the two variable.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Predict the output a b = 12 13 print (print (a+b)) ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers