Advertisements
Advertisements
Question
Write about Binary operators used in C++.
Solution
Binary Operators require two operands:
Arithmetic operators that perform simple arithmetic operations like addition, subtraction, multiplication, division (+, -, *, %, /), etc. are binary operators which require a minimum of two operands.
Relational operators are used to determining the relationship between their operands. The relational operators (<, >, >=, <=, ==, !=) are applied on two operands, hence they are binary operators. AND, OR (logical operator) both are binary operators. The assignment operator is also a binary operator (+=, – =, *=, /=, %=).
APPEARS IN
RELATED QUESTIONS
Which of the following statements is not true?
The following constant is of which type?
032
The following constant is of which type?
0XCAFE
Write the following real constant into the exponent form:
0.00005
Describe the differences between keywords and identifiers?
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’
Determine which of the following are valid constant? And specify their type.
27,822
What are arithmetic operators in C++? Differentiate unary and binary arithmetic operators. Give example for each of them.
How relational operators and logical operators are related to one another?