Computer Science, asked by mouryakrishnegowda, 6 months ago

what is the difference between = and ==​

Answers

Answered by intelligent70
0

Answer:

(=) this means equal to and dont know about==

Answered by BrainlyProgrammer
1

Answer:

'='

  1. It known as assignment operator
  2. Used for assigning a value to a Variable
  3. Example:- int a=5;

'=='

  1. It is known as conditional operator.
  2. Used for checking conditions
  3. Example:

if(a==5)

System.out.println("Five");

else

System.out.println("Not five");

Similar questions