Computer Science, asked by santoshkumar9861255, 2 months ago

Identify the operator name. i. == ii. + iii. &&​

Answers

Answered by nithya353
0

Explanation:

1. Equality operator. It is used to check whether two variables are equal or not.

For example, 1 == 3 which is false

4 == 4 is true.

2. It is addition operator. Used to add two or more numbers.

For. example, 2+6+(-5) gives 3.

3. It is logical AND operator. It returns true if both the conditions are true or else returns false.

For example, (3!=4)&&(5>2) results true.

as 3 is not equal to 4 which is true and 5 is greater than 2 which is true. true and true results true

Similar questions