
Question:Are the imports checked for validity at compile time? e.g. will the code containing an import such as java.lang.ABCD compile?
Question:Does importing a package imports the subpackages as well? e.g. Does importing com.MyTest.* also import com.MyTest.UnitTests.*?
Question:What...