Computer Science, asked by Pardhu3075, 11 months ago

What is the use of ""= ="" operator?

Answers

Answered by kaurgurwansh007
4

It is used for comparison.

when ever result is equal we put = sign..

may it help u

Answered by letmeanswer12
0

Use of ""=="" operator

Explanation:

Operators are used to performing operations on values and variables. Relational operators are used to comparing two values to consider a pair of number shares as to the form of relationship. Commonly use relational operators are (>, <, ==, !=, >=, < =).

The Equal to an operator is represented as ‘==', checks if the values of two operands are equal or not, if yes then condition becomes true. Otherwise, it returns false.  

  • For example, Assume x=42, y=27 x==y will return False.
  • For example, Assume x=15, y=15 x==y will return True.

Similar questions