FINAL EXAM Flashcards
1
Q
The Java programming language supports various arithmetic operators for all floating-point and integer numbers.
A
Arithmetic Operators
2
Q
Are used to increase or decreasing the value of an operand. Increment operator adds 1 to the value of a variable, whereas the decrement operator decreases a value.
A
Unary Operators
3
Q
==
A
Equal to
4
Q
!=
A
Not equal to
5
Q
>
A
Greater than
6
Q
> =
A
Greater than or equal to
7
Q
<
A
Less than
8
Q
<=
A
Less than or equal to
9
Q
&&
A
Conditional - AND
10
Q
l l
A
Conditional - OR
11
Q
Can compare numbers or strings and perform evaluations. (instanceof)
A
Comparison Operator
12
Q
~
A
Unary Bitewise Complement
13
Q
«
A
Signed Left Shift
14
Q
> >
A
Signed Right Shift
15
Q
> > >
A
Unsigned Right Shift