- Home
- Chapter 1 - Object Oriented Programming Concepts
- Object Oriented Programming Concepts
- Multiple Choice Questions
- State whether the given statements are True or False
- Assignment Questions
- Chapter 2 - Introduction to Java
- Introduction to Java
- Multiple Choice Questions
- Assignment Questions
- Chapter 3 - Values and Data Types
- Values and Data Types
- Multiple Choice Questions
- State whether the given statements are True or False
- Assignment Questions
- Chapter 4 - Operators in Java
- Operators in Java
- Multiple Choice Questions
- State whether the given statements are True or False
- Assignment Questions
- Chapter 5 - User-Defined Methods
- User-Defined Methods
- Multiple Choice Questions
- State whether the given statements are True or False
- Assignment Questions
- Chapter 6 - Input in Java
- Input in Java
- Multiple Choice Questions
- Assignment Questions and Programs
- Chapter 7 - Mathematical Library Methods
- Mathematical Library Methods
- Multiple Choice Questions
- Assignment Questions
- Chapter 8 - Conditional Constructs in Java
- Conditional Constructs in Java
- Multiple Choice Questions
- Assignment Questions and Programs
- Chapter 9 - Iterative Constructs in Java
- Iterative Constructs in Java
- Multiple Choice Questions
- State whether the given statements are True or False
- Assignment Questions and Programs
- Chapter 10 - Nested for loops
- Nested for loops
- Assignment Questions and Programs
- Chapter 11 - Constructors
- Constructors
- Multiple Choice Questions
- Assignment Questions and Programs
- Chapter 12 - Library Classes
- Library Classes
- Multiple Choice Questions
- Assignment Questions
- Chapter 13 - Encapsulation and Inheritance
- Library Classes
- Multiple Choice Questions
- Assignment Questions
- Chapter 14 - Arrays
- Library Classes
- Multiple Choice Questions
- Assignment Questions
- Chapter 15 - String Handling
- Library Classes
- Multiple Choice Questions
- Assignment Questions
Operators in Java
Chapter 4
Operators in Java
Class 10 - Logix Kips ICSE Computer Applications with BlueJ
![]() Share with a Friend |
State whether the given statements are True or False
Question 1
There is only one ternary operator in Java.
True
Question 2
Arithmetic operators + and - also have a unary form.
True
Question 3
Operators = and == perform the same operation in Java.
False
Question 4
The expression 14 % 2 evaluates to 0.
True
Question 5
The expression 7 / 13 evaluates to 0.
True
Question 6
The output of System.out.println(!true); is false.
True
Question 7
The expressions 6 + 7 and "6" + "7" evaluate to the same value.
False
Question 8
The expression m = m + 2 is same as m =+ 2.
False
Question 9
The new operator allocates memory during runtime.
True
Question 10
The statements n = 25 and n == 25 are same.
False
Question 11
The expression p =- 9 is same as p = p-9.
False
Question 12
The assignment operator (=) is a binary operator.
True
Question 13
The output of System.out.println(1==1); is true.
True
Question 14
Explicit type conversion is also known as coercion.
False
