1. Consider
the following program:
import
myLibrary.*;
public
class ShowSomeClass
{
//
code for the class...
}
What
is the name of the java file containing this program?
A.
myLibrary.java
B. ShowSomeClass.java
C.
ShowSomeClass
D.
ShowSomeClass.class
E.
Any file name with the java suffix will do
2.
A constructor
A.
must have the same name as the class it is declared within.
B.
is used to create objects.
C.
may be declared private
D. A and B
E.
A, B and C
3.
Which of the...