Boolean Logical Operator

What Does Boolean Logical Operator Mean?

A Boolean logical operator in the context of C# programming language is an operator used to perform Boolean logic upon two Boolean expressions.

Advertisements

Boolean logical operators return Boolean results (true or false) and take Boolean values as operands. While performing Boolean logic, the expression on the left is evaluated, followed by the expression on the right. The two expressions are finally evaluated in the context of the Boolean logical operator between them. The return value is of Boolean type and based on the operator type used.

Techopedia Explains Boolean Logical Operator

Boolean logical operators can be used to test or adjust the value of a Boolean variable. The result of the expression using these operators can be used in conditional statements to control the program flow through the code.

Boolean logical operators have precedence in the order shown below:

  1. Logical AND (&)
  2. Logical XOR (^)
  3. Logical OR (|)

It is vital to understand the difference between the & and && operators when they are used in an expression where two conditions have to be evaluated. While the & operator always executes both conditions, && does not execute the second on failure of the first. The || operator works similar to && by skipping the conditions after the first, if the first condition is true. Hence, && and || (referred to as conditional logical operators) are called short circuit operators.

The ^ operator works in a similar way to |. The | and || operators (and & and && operators) are not interchangeable since they operate differently.

Advertisements

Related Terms

Latest DevOps Terms

Related Reading

Margaret Rouse

Margaret Rouse is an award-winning technical writer and teacher known for her ability to explain complex technical subjects to a non-technical, business audience. Over the past twenty years her explanations have appeared on TechTarget websites and she's been cited as an authority in articles by the New York Times, Time Magazine, USA Today, ZDNet, PC Magazine and Discovery Magazine.Margaret's idea of a fun day is helping IT and business professionals learn to speak each other’s highly specialized languages. If you have a suggestion for a new definition or how to improve a technical explanation, please email Margaret or contact her…