Ask Question
19 October, 19:41

if (x is greater than 50) AND (y is less than 20) output ""Yes"" else output ""No"" Assuming x equals 55 and y equals 25 then the output would be:

+3
Answers (1)
  1. 19 October, 22:53
    0
    "No".

    Explanation:

    The if statement evaluates to:

    if (true AND false), which is equivalent to if (false), and thus the else clause is evaluated.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “if (x is greater than 50) AND (y is less than 20) output ""Yes"" else output ""No"" Assuming x equals 55 and y equals 25 then the output ...” 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