CS103-chapter 3-4 Flashcards
Raises one operand to the power of another
Adds two operands
+
Substracts second operand from the first
-
Modulus operator and remainder of after an integer division
MOD
Divides one operand by another and returns a floating points results
/
Divides one operand by another and returns an integer results
\
Checks if the values of two operands are equal or not; if yes, then condition becomes true.
=
Checks if the values of two operands are equal or not; if values are not equal, then condition becomes true.
<>
Checks if the value of left operand is greater than the value of right operand; if yes, then condition becomes true.
>
Checks if the value of left operand is less than the value of right operand
<
Checks if the value of left operand is less than or equal to the value of right operand; if yes, then condition becomes true
<=
Checks if the value of left operand is greater than or equal to the value of right operand; if yes, then condition becomes true
> =
It is the logical as well as bitwise AND operator.
And
It is the logical as well as bitwise OR operator.
Or
It is the logical as well as bitwise NOT operator.
Not
It is the logical as well as bitwise Logical Exclusive OR operator.
Xor
It is the logical as well as bitwise Logical Exclusive OR operator.
Xor
It is the logical AND operator.
AndAlso
It is the logical OR operator.
OrElse
It determines whether an expression is False.
IsFalse