Java Packages Interview Questions
By on Nov 5, 2007 in 4036
Do I need to import java.lang package any time? Why?No. It is by default loaded internally by the JVM. The java.lang package is always imported by default.
Can I import same package/class twice? Will the JVM load the package twice at runtime?
One can import the same package or same class multiple times. Neither compiler nor JVM [...]


