Ask Question
31 October, 10:29

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

+3
Answers (1)
  1. 31 October, 11:57
    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?
Get an answer to your question ✅ “Predict the output a b = 12 13 print (print (a+b)) ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers