Ask Question
Today, 13:14

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. Today, 16:35
    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 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