Advertisements
Advertisements
प्रश्न
Write about Binary operators used in C++.
उत्तर
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
संबंधित प्रश्न
Can keywords be used as identifiers?
The following constant is of which type?
39
The following constant is of which type?
04.14
Assume n = 10; what will be result of n++ and --n;?
Match the following.
A | B |
(a) Modulus | (1) Tokens |
(b) Separators | (2) Remainder of a division |
(c) Stream extraction | (3) Punctuators |
(d) Lexical Units | (4) get from |
Describe the differences between keywords and identifiers?
Differentiate “=” and “==”.
What is the difference between 56L and 56?
Determine which of the following are valid constant? And specify their type.
0.5
Determine which of the following are valid constant? And specify their type.
‘\t’