Advertisements
Advertisements
Question
An operator is basically a symbol which performs arithmetical and logical operations to yield meaningful results. There are three types of operators used to perform any operation in Java programming. They are arithmetical, relational and logical operators. The arithmetical operators are used to perform arithmetical calculations. They are unary, binary and ternary operators. The syntax of using ternary operator is:
variable = (condition) ? expression1 : expression2;
Based on the above discussion, answer the following questions:
- A / An ______ operator works on a single operand.
- binary
- relational
- unary
- ternary
- Which of the following is not a logical operator?
- ++
- &&
- ||
- !
- Which of the following constructs is equivalent to the ternary operator in Java language?
- if
- if-else
- nested if
- switch-case
- Which of the following is a relational operator?
- &
- $
- !=
- !
Answer in Brief
Solution
- iii. unary
- i. ++
- ii. if-else
- iii. !=
shaalaa.com
Is there an error in this question or solution?