Declaration and Access Control Name the keyword that makes a variable belong to a class, rather than being defined for each instance of the class. native volatile static final abstract native volatile static final abstract ANSWER DOWNLOAD EXAMIANS APP
Declaration and Access Control The object is created with new keyword Depends on the code At run-time At Compile-time None of these Depends on the code At run-time At Compile-time None of these ANSWER DOWNLOAD EXAMIANS APP
Declaration and Access Control Determine output:public class InitDemo{static int i = demo();static{ System.out.print(i); }InitDemo(){System.out.print("hello1");}public static void main(String... args){ System.out.print("Hello2");} static int demo(){ System.out.print("InsideDemo");return 10;}} InsideDemo 10 Hello2 Hello2 InsideDemo 10 Compilation error. IllegalArgumentException is thrown at runtime. InsideDemo 10 Hello2 hello1 InsideDemo 10 Hello2 Hello2 InsideDemo 10 Compilation error. IllegalArgumentException is thrown at runtime. InsideDemo 10 Hello2 hello1 ANSWER DOWNLOAD EXAMIANS APP
Declaration and Access Control What is the output for the below code ?public class A{ static{ System.out.println("static"); } { System.out.println("block"); } public A(){ System.out.println("A"); } public static void main(String[] args){ A a = new A(); }} static A A block static static block A None of these A static A A block static static block A None of these A 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 printing Compiles and runs with no output. It will fail to compile. Runtime error Compiles and runs printing Compiles and runs with no output. ANSWER DOWNLOAD EXAMIANS APP
Declaration and Access Control Choose all the lines which if inserted independently instead of "//insert code here" will allow the following code to compile:public class Test{ public static void main(String args[]){ add(); add(1);add(1, 2); }// insert code here} void add(Integer... args){} static void add(int[]... args){} static void add(int args...){} static void add(int...args){} static void add(int... args, int y){} void add(Integer... args){} static void add(int[]... args){} static void add(int args...){} static void add(int...args){} static void add(int... args, int y){} ANSWER DOWNLOAD EXAMIANS APP