Declaration and Access Control The object is created with new keyword At Compile-time Depends on the code None of these At run-time At Compile-time Depends on the code None of these At run-time ANSWER DOWNLOAD EXAMIANS APP
Declaration and Access Control A package is a collection of Interfaces Classes and Interfaces Editing tools Classes Editing tools and Interfaces Interfaces Classes and Interfaces Editing tools 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? Compiles and runs printing Runtime error Compiles and runs with no output. It will fail to compile. Compiles and runs printing Runtime error Compiles and runs with no output. It will fail to compile. 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); }} None of these one two 10 one two 1 Compile time error. one two 0 None of these one two 10 one two 1 Compile time error. one two 0 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 20 one one two one two 20 20 one 20 one one two one two 20 20 ANSWER DOWNLOAD EXAMIANS APP
Declaration and Access Control What will be the output?public class Test{static{int a = 5;}public static void main(String args[]){new Test().call();}void call(){this.a++;System.out.print(this.a);}} Compile with error 5 Runtime Exception 6 0 Compile with error 5 Runtime Exception 6 0 ANSWER DOWNLOAD EXAMIANS APP