liqiang888's picture
Upload 674 files
62722a6 verified
raw
history blame
No virus
425 Bytes
QUESTION 11 Cell A1, A2, A3 and A4 contain either a 1 or 0. In Excel 2013, which of the following formulas will return TRUE only when one of the following two conditions are satisfied but not both: condition (i): both A1 and A2 contain 1 condition (ii): A3 and A4 are both 0 a. =OR(AND(A1,A2),NOT(XOR(A3,A4))) b. =XOR(AND(A1,A2,NOT(A3),NOT(A4))) c. =XOR(AND(A1,A2),NOT(AND(A3,A4))) d. =XOR(AND(A1,A2),AND(NOT(A3),NOT(A4)))