give the name of the following operators A++ && II % ?:
Attachments:
Answers
Answered by
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
0
Name of the operator:
Explanation:
- Post increment operator.
- Logical and operator.
- Logical or operator.
- Modulo operator.
- Ternary operator or Conditional operator.
Detailed Explanation:
- This operator is used to increase the value.
- This operator is used to check the two conditions.
- This operator is used to check the two conditions.
- The operator is used to give the remainder.
- This operator is used to check the condition.
Learn More:
- Operator : https://brainly.in/question/3178424
Similar questions