Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

When is a > = b true in vbscript?


Asked by Kamari Hayes on Dec 14, 2021 VBScript



(A >= B) is False. Checks if the value of left operand is less than or equal to the value of right operand, if yes then condition becomes true. (A <= B) is True. To understand these operators in a better way, you can Try it yourself.
One may also ask,
(A >= B) is False. Checks if the value of left operand is less than or equal to the value of right operand, if yes then condition becomes true. (A <= B) is True. To understand these operators in a better way, you can Try it yourself.
Moreover, To execute only one statement when a condition is true: There is no “Else” in the above example. It performs only one action when a condition is true It is to execute more than one statement when a condition is true. It’s an alternative to IF-THEN-ELSE.
Subsequently,
NOT (a<>0 OR b<>0) is false. Called Logical Exclusion. It is the combination of NOT and OR Operator. If one, and only one, of the expressions evaluates to True, result is True. (a<>0 XOR b<>0) is true. To understand these operators in a better way, you can Try it yourself. There are following Concatenation operators supported by VBScript language −
Likewise,
There are following logical operators supported by VBScript language − Called Logical AND operator. If both the conditions are True, then Expression becomes True. a<>0 AND b<>0 is False. Called Logical OR Operator. If any of the two conditions is True, then condition becomes True.