Operators - !
Notes:This operator inverses the boolean value, i.e. !true ==> false and !false ==> true Because its input and output data type is boolean this operator will mainly appear where boolean expressions must be specified, as in if-clauses.
!true ==> false !false ==> true !a |