Boolean values have two values only – TRUE and FALSE
Comparison operators like ==, <=, >=, !=, <, >
== is comparison operator and = is assignment operator
truth Table
————————-
true and true = true
true and false = false
false and true = false
false and false = false
not true = false
not false = true