Ask Question
22 September, 21:39

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

+2
Answers (1)
  1. 23 September, 00:13
    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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers