Interview Questions - Advanced Java

37.
What are order of precedence and associativity, and how are they used?

Order of precedence determines the order in which operators are evaluated in expressions.

Associatity determines whether an expression is evaluated left-to-right or right-to-left.


38.
When a thread blocks on I/O, what state does it enter?
A thread enters the waiting state when it blocks on I/O.

39.
To what value is a variable of the String type automatically initialized?
The default value of an String type is null.

40.
What is the catch or declare rule for method declarations?
If a checked exception may be thrown within the body of a method, the method must either catch the exception or declare it in its throws clause.