Ask 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 would be:

+3
Answers (1)
  1. 15 May, 05:47
    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?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers