InterviewSolution
Saved Bookmarks
| 1. |
Which Java operator has the highest precedence? |
|||||||||||||||||||||||||||||||||||||||||||||
|
Answer» The operator PRECEDENCE in JAVA determines the order of evaluation for the operators in an expression. The Java operator that has the highest precedence can be seen from the table given below:
As is obvious from the above table, the postfix operators (++ --) have the highest precedence in Java. |
||||||||||||||||||||||||||||||||||||||||||||||