Computer Applications
Identify the type of operator &&:
- ternary
- unary
- logical
- relational
Java Operators
ICSE 2023
22 Likes
Answer
logical
Reason — Logical operators operate only on boolean operands and are used to construct complex decision-making expressions. Logical AND && operator evaluates to true only if both of its operands are true.
Answered By
11 Likes
Related Questions
- A mechanism where one class acquires the properties of another class: - Polymorphism
- Inheritance
- Encapsulation
- Abstraction
 
- The Scanner class method used to accept words with space: - next()
- nextLine()
- Next()
- nextString()
 
- The keyword used to call package in the program: - extends
- export
- import
- package
 
- What value will - Math.sqrt(Math.ceil(15.3))return?- 16.0
- 16
- 4.0
- 5.0