Advertisements
Advertisements
Question
What are arithmetic operators in C++? Differentiate unary and binary arithmetic operators. Give example for each of them.
Advertisements
Solution
Arithmetic operators: perform simple arithmetic operations like addition, subtraction, multiplication, division, etc.
Unary Operators:
- Require only one operand.
- Example: +, -, *, /, %, >, <, <=, AND, OR
Binary Operators:
- Require two operands
- Example: ++ (Plus, Plus) Increment operator, – – (Minus, Minus) Decrement operator, NOT, ~,
APPEARS IN
RELATED QUESTIONS
Which of the following operator is an extraction operator in C++?
Which of the following is called compile-time operators?
Can keywords be used as identifiers?
The following constant is of which type?
04.14
Write the following real constant into the exponent form:
0.00005
Assume n = 10; what will be result of n++ and --n;?
Describe the differences between keywords and identifiers?
Differentiate “=” and “==”.
Write a short note on the const keyword with an example.
Determine which of the following are valid constant? And specify their type.
‘\t’
