Computer Science, asked by manindragosavi12june, 11 months ago

give the name of the following operators A++ && II % ?:​

Attachments:

Answers

Answered by anishasa
3

Answer:

A++ ---> Post-increment operator

&& ---> Logical AND operator

||  --->   Logical OR operator

% ---> Arithmetic operator(Modulus operator, remainder of an integer division

?: ---> Ternary or conditional operator

Answered by AskewTronics
0

Name of the operator:

Explanation:

  1. Post increment operator.
  2. Logical and operator.
  3. Logical or operator.
  4. Modulo operator.
  5. Ternary operator or Conditional operator.

Detailed Explanation:

  1. This operator is used to increase the value.
  2. This operator is used to check the two conditions.
  3. This operator is used to check the two conditions.
  4. The operator is used to give the remainder.
  5. This operator is used to check the condition.

Learn More:

  • Operator : https://brainly.in/question/3178424
Similar questions