Ask Question
14 February, 09:31

14. If B3=10 and D5=8, what would the following function return? IF (B3>D5, "Closed", D5-B3) *

A. "Open"

B. "Closed"

C. - 2

D. + 2

+2
Answers (1)
  1. 14 February, 11:43
    0
    IF function has three parts

    IF (condition_to_check, return_if_true, return_if_false)

    IF function first checks condition. If it is true it returns first result. Otherwise it returns second result.

    Condition to check:

    B3>D5

    After inserting numbers we get:

    10>8

    This is correct so the first result will be returned.

    The given IF function returns "Closed".
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “14. If B3=10 and D5=8, what would the following function return? IF (B3>D5, "Closed", D5-B3) * A. "Open" B. "Closed" C. - 2 D. + 2 ...” 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