Logical Operators:
Concatenation Operator:
Follow @TestingQ
Logic operators are used to manipulate and create logical statements
Operator
|
English
|
Example
|
Result
|
Not
|
Inverts Truth Value
|
Not False
|
True
|
Or
|
Either Can Be True
|
True Or False
|
True
|
And
|
Both Must Be True
|
True And False
|
False
|
Concatenation Operator:
& --> Concatenation of any type of data can be done.
Ex: a = "Good"
b = "Morning"
Msgbox a & b Output: GoodMorning