Solutions for Class 10 ICSE Logix Kips Computer Applications with BlueJ Java | IT Developer <?php echo $page_title; ?>
IT Developer

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