Logical and Concatenation Operator - TestingQ.com

-->Exclusive Portal for Testing Jobs

Logical and Concatenation Operator

Logical Operators:
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 

No comments:

Post a Comment