Interview Questions - Core Java

117.
Which Java operator is right associative?
The = operator is right associative.

118.
Can a double value be cast to a byte?
Yes, a double value can be cast to a byte.

119.
What is the difference between a break statement and a continue statement?
A break statement results in the termination of the statement to which it applies (switch, for, do, or while). A continue statement is used to end the current loop iteration and return control to the loop statement.

120.
Can a for statement loop indefinitely?
Yes, a for statement can loop indefinitely. For example, consider the following: for(;;);