Advertisements
Advertisements
प्रश्न
Write about Binary operators used in C++.
Advertisements
उत्तर
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
संबंधित प्रश्न
Which of the following operator is an extraction operator in C++?
Which of the following statements is not true?
Can keywords be used as identifiers?
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
Differentiate “=” and “==”.
Consider the following C++ statement. Are they equivalent?
char ch = 67;
char ch = ‘C’;
What is the difference between 56L and 56?
Determine which of the following are valid constant? And specify their type.
27,822
