Which answer choice is equivalent to the following decision?
if a > 12 then
if b > 8 then
output "Yes"
endif
endif
a. if a > 12 OR b > 8 then output "Yes"
b. if a > b then output "Yes"
c. if a > 12 AND a > b then output "Yes"
d. if a > 12 AND b > 8 then output "Yes"
+5
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Which answer choice is equivalent to the following decision? if a > 12 then if b > 8 then output "Yes" endif endif a. if a > 12 OR b > 8 ...” 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.
Home » Computers & Technology » Which answer choice is equivalent to the following decision? if a > 12 then if b > 8 then output "Yes" endif endif a. if a > 12 OR b > 8 then output "Yes" b. if a > b then output "Yes" c. if a > 12 AND a > b then output "Yes" d.