Declaration and Access Control A package is a collection of Editing tools Interfaces Classes and Interfaces Classes Editing tools and Interfaces Editing tools Interfaces Classes and Interfaces Classes Editing tools and Interfaces ANSWER DOWNLOAD EXAMIANS APP
Declaration and Access Control You have the following code in a file called Test.javaclass Base{ public static void main(String[] args){ System.out.println("Hello"); }}public class Test extends Base{}What will happen if you try to compile and run this? It will fail to compile. Runtime error Compiles and runs with no output. Compiles and runs printing It will fail to compile. Runtime error Compiles and runs with no output. Compiles and runs printing ANSWER DOWNLOAD EXAMIANS APP
Declaration and Access Control What will be the output after compiling and running following program code?public class Test{ static int a; public static void main(String[] args){ System.out.println("one"); call(1); } static void call(int a){ this.a=10; System.out.println("two "+a); }} one two 1 None of these Compile time error. one two 0 one two 10 one two 1 None of these Compile time error. one two 0 one two 10 ANSWER DOWNLOAD EXAMIANS APP
Declaration and Access Control Determine Output:class MyClass{ static final int a = 20; static final void call(){ System.out.println("two"); } static{ System.out.println("one"); }}public class Test{ public static void main(String args[]){ System.out.println(MyClass.a); }} one one 20 20 one two one two 20 one one 20 20 one two one two 20 ANSWER DOWNLOAD EXAMIANS APP
Declaration and Access Control A method within a class is only accessible by classes that are defined within the same package as the class of the method. Which one of the following is used to enforce such restriction? Declare the method with the keyword private. Declare the method with the keyword public and private. Declare the method with the keyword protected. Do not declare the method with any accessibility modifiers. Declare the method with the keyword public. Declare the method with the keyword private. Declare the method with the keyword public and private. Declare the method with the keyword protected. Do not declare the method with any accessibility modifiers. Declare the method with the keyword public. ANSWER DOWNLOAD EXAMIANS APP
Declaration and Access Control Choose the correct statement. Restriction on static methods are: I. They can only call other static methods.II. They must only access static data.III. They cannot refer this or super in any way. Only (III) Only (I) (I) and (II) (I), (II) and (III) (II) and (III) Only (III) Only (I) (I) and (II) (I), (II) and (III) (II) and (III) ANSWER DOWNLOAD EXAMIANS APP