Interview Questions - Advanced Java

33.
What is the immediate superclass of the Dialog class?
Window.

34.
What is clipping?
Clipping is the process of confining paint operations to a limited area or shape.

35.
What is a native method?
A native method is a method that is implemented in a language other than Java.

36.
Can a for statement loop indefinitely?

Yes, a for statement can loop indefinitely. For example, consider the following:

for(;;) ;