14.0k views
1 vote
"The ____________________ function is a logical function that returns a TRUE value if any of the logical conditions are true and a FALSE value if the logical conditions are false."

User Dmaxi
by
6.2k points

1 Answer

3 votes

Answer:

OR function

Step-by-step explanation:

The OR logical function is a basic function that compares two or more statement or values and return TRUE if any of the logical conditions are true but return FALSE only when all the logical condition are false.

example

1. condition A = TRUE

condition B = FALSE

condition A OR condition B = TRUE

2. condition A = TRUE

condition B = TRUE

condition A OR condition B = TRUE

3. condition A = FALSE

condition B = TRUE

condition A OR condition B = TRUE

4. condition A = FALSE

condition B = FALSE

condition A OR condition B = FALSE

User Martin Del Vecchio
by
5.7k points