1/17
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
=
Simple assignment operator, Assigns values from right side operands to left side operand.
+=
Add AND assignment operator, It adds right operand to the left operand and assign the result to left operand.
-=
Subtract AND assignment operator, It subtracts right operand from the left operand and assign the result to left operand
*=
Multiply AND assignment operator, It multiplies right operand with the left operand and assign the result to left operand.
/=
Divide AND assignment operator, It divides left operand with the right operand and assign the result to left operand.
%=
Modulus AND assignment operator, It takes modulus using two operands and assign the result to left operand.
%
Modulus - Returns the division remainder
++
Increment
Increases the value of a variable by 1.
- -
Decrement
Decreases the value of a variable by 1.
= =
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, 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.
<=
Checks if the value of left operand is less than or equal to the value of right operand, if yes then condition becomes true.
&&
Called Logical AND operator. If both the operands are non-zero, then condition becomes true.
||
Called Logical OR Operator. If any of the two operands is non-zero, then condition becomes true.
!
Called Logical NOT Operator. Use to reverses the logical state of its operand. If a condition is true, then Logical NOT operator will make false.