13. Write the output of the following statements, if the value of x = 5 and y=3.
i)(x>y)&&(y>10)
ii) (x >=2) || (y >= 3)
Answers
Answered by
1
Answer:
false
true
Explanation:
x > y => 5 > 3 is true
y > 10 => 3 > 10 is false
true && false is false
Why do you even ask such questions.
Similar questions