Advertisements
Advertisements
Question
What are arithmetic operators in C++? Differentiate unary and binary arithmetic operators. Give example for each of them.
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
The following constant is of which type?
39
Write the following real constant into the exponent form:
7.214
Write the following real constant into the exponent form:
0.00005
Describe the differences between keywords and identifiers?
Is C++ case sensitive? What is meant by the term “case sensitive”?
Differentiate “=” and “==”.
Write about Binary operators used in C++.
Write a short note on the const keyword with an example.
Consider the following C++ statement. Are they equivalent?
char ch = 67;
char ch = ‘C’;
Determine which of the following are valid constant? And specify their type.
‘\t’