4 Dec 2020

Operators

                       

          Operators are the constructs which can manipulate the value of operands.Consider the expression 4 + 5 = 9 Here, 4 and 5 are called operands and + is called operator.                                                  

Types of Operators:

* Arithmetic Operators
* Comparison (Relational) Operators
* Assignment Operators
* Logical Operators
* Bitwise Operators
* Membership Operators
* Identity Operators


No comments:

Post a Comment

Operator precedence

           When an expression contains more than one operator, the order of evaluation depends on the order of operations.            The ac...