Chapter 2: Operators Flashcards

1
Q

A Java operator is a special symbol applied to operands to return a result.
If false, why?

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Java supports unary, binary, and ternary operators.
If false, why?

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Operator precedence determines the evaluation order of operators.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

The multiplication operator (*) has a higher precedence than addition (+).
If false, why?

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Parentheses can override Java’s default operator precedence.
If false, why?

A

True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Java guarantees right-to-left evaluation for operators with the same precedence.
If false, why?

A

False – Java guarantees left-to-right evaluation for operators of the same precedence.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Pre-unary operators (++x, –x) are evaluated right-to-left.
If false, why?

A

False – Pre-unary operators are evaluated left-to-right.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

The bitwise complement () is evaluated left-to-right.
If false, why?

A

False – The bitwise complement operator () is evaluated right-to-left.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

The shift operators («,&raquo_space;,&raquo_space;>) are evaluated right-to-left.
If false, why?

A

False – Shift operators are evaluated left-to-right.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

The arrow operator (->) is a unary operator.
If false, why?

A

False – The arrow operator (->) is a binary operator representing a relationship between two operands.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Logical AND (&) is evaluated right-to-left.
If false, why?

A

False – Logical AND (&) is evaluated left-to-right

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

The ternary operator (? :) is evaluated left-to-right.
If false, why?

A

False – Left-to-right evaluation of condition, but right-to-left associativity for nested ternary operators.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

The logical complement operator (!) cannot be applied to numeric expressions.

A

✅ True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

The post-increment operator y++ increases the value by 1 but returns the original value.

A

✅ True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

The negation operator (-) can be applied to boolean expressions.

A

❌ False (It can only be applied to numeric expressions.)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

The logical complement operator (!) can be applied to integer values.

A

❌ False (It can only be applied to boolean expressions.)

16
Q

The ~ operator inverts only 0 bits and leaves 1 bits unchanged.

A

❌ False (It inverts all bits, flipping both 0s and 1s.)

16
Q

The pre-increment operator ++w returns the original value before incrementing.

A

❌ False (It returns the new value after incrementing.)

16
Q

The bitwise complement operator (~) can be applied to boolean values.

A

❌ False (It can only be applied to integer numeric types.)

17
Q

Increment and decrement operators have a lower precedence than binary arithmetic operators.

A

❌ False (They have a higher precedence.)

17
Q

The post-decrement operator z– returns the new value after decrementing.

A

❌ False (It returns the original value before decrementing.)

18
Q

The logical complement operator (!) is considered a binary operator.

A

❌ False (It is a unary operator, not binary.)

19
Q

The negation operator (-) changes the absolute value of a numeric expression but keeps its sign unchanged.

A

❌ False (It reverses the sign, making positive values negative and vice versa.)

20
Q

The ‘+’’+’ and ‘-‘’-‘ operators can be applied to boolean values.

A

❌ False (They can only be applied to numeric types.)