Computer Science, asked by ayushkashyap903, 9 months ago

Is "" < ="" a Assignment operator ?

Answers

Answered by shaivyvi75
1

yes it is.......

mark me as brainlist

Answered by PravinRatta
0

No, <= is not an assignment operator. This operator is known as relational operator or comparison operator.

We can understand the two operators with the help of following examples :-

Relational Operator: These are used for comparison of the values of two operands. If two values are given then we can do comparison with these operators.

For example, if we have to check whether one operand is equal to the other operand or not, an operand is greater than the other operand or not etc. Some operators are (==, >= , <= ).

Assignment Operator: Assignment operators are used to assign value to a variable. The left side operand of the assignment operator is a variable and right side operand of the assignment operator is a value. So, whatever will be the value on the right side, it will be assigned to the variable.

Similar questions