What is meaning of jar ?
A. java array
B. java architecture
C. java archived
D. none of these
A. java array
B. java architecture
C. java archived
D. none of these
A. From within protected methods you do not have access to public methods.
B. This method is only accessible from inside the class itself and from inside all subclasses.
C. In a class, you cannot declare methods with a lower visibility than the visibility of the class in which it is defined.
D. This method is accessible from within the class itself and from within all classes defined in the same package as the class itself.
A. java.awt
B. javax.swing
C. java.applet
D. java.io
A. 5
B. 6
C. 7
D. 8
A. moderate typed
B. strogly typed
C. weakly typed
D. none of these
A. boxing
B. wrapg
C. autoboxing
D. instantiation
A. arrayName[] p = new arrayName[5];
B. arrayName p[][] = new arrayName[2][];
C. arrayName[] p [];
D. arrayName p[5];