Java - Interview Questions and Answers on Static Import

Q1.  What are concepts introduced with Java 5 ?

Ans. Generics , Enums , Autoboxing , Annotations and Static Import.

Q2.  What is a Static import ?

Ans. By static import , we can access the static members of a class directly without prefixing it with the class name.

Q3.  Which of the following syntax is correct ?

import static java.lang.System.*;

or 

static import java.lang.System.*;

Ans. import static java.lang.System.*