Example of logical function
Answers
If an argument of a logical function contains numbers, then zero evaluates to FALSE, and all other numbers including negative numbers evaluate to TRUE. For example, if cells A1:A5 contain numbers, the formula =AND(A1:A5) will return TRUE if none of the cells contains 0, FALSE otherwise.
Answer:
Function Description Formula Example
AND Returns TRUE if all of the arguments evaluate to TRUE. =AND(A2>=10, B2<5)
OR Returns TRUE if any argument evaluates to TRUE. =OR(A2>=10, B2<5)
XOR Returns a logical Exclusive Or of all arguments. =XOR(A2>=10, B2<5)
Explanation:
What is logical function?
The OR function is similar to the IF function in that it uses a logical test to evaluate the contents of a cell location. However, the OR function allows you to define several logical tests as opposed to just one. If one of the logical tests is true, the output of the function will be the word TRUE.
mark me as brainliest please