Logical or Boolean Operators part 1

Logical Operators



Logical Operators, also known as Boolean Operators, evaluate the expression and return true or false.

The table below explains the logical operators (ANDORNOT).
You can check all types of data; comparison operators always return true or false.
Logical AND (&&) returns true if:
If one of the operands is true, but not both
Both operands are true
If only one of the operands is true

Comments

Popular posts from this blog

Introducing object part 3

Comparison Operators part 2

Module 2