Find output a=15,b=10 if(a>b): print("a is greater")?
Answers
Answered by
2
Answer:
If the code is in python then here is your answer :
a is greater
Explanation:
<1> a = 15 (Declares that variable a is equal to 15)
<2>b = 10 (Declares that variable b is equal to 10)
<3>if(a>b): (Declares a condition if variable a is greater than variable b )
<4>print("a is greater") (Declares that what to do if above condition is true )
HOPE IT HELPS U. PLZ DO MY MARK MY ANSWER AS BRAINLIEST.
Similar questions