Computer Science, asked by abhisingh15, 9 months ago

state the use of = and = = operator in java​

Answers

Answered by anupama777vidya
0

Answer:

= Is the assignment operator and it assumes value from right to left.

Eg int a=10;

== Is relational operator and it checks the equality between 2 variables or operands

Eg. if(3==6)

Hope it helps you

Similar questions