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 static volatile final abstract native static volatile final abstract ANSWER DOWNLOAD EXAMIANS APP
Declaration and Access Control What is the result of compiling and running the following code?class Base{ private Base(){ System.out.print("Base"); }}public class test extends Base{ public test(){ System.out.print("Derived"); } public static void main(String[] args){ new test(); }} Exception is thrown at runtime Derived Compilation Error BaseDerived Exception is thrown at runtime Derived Compilation Error BaseDerived 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? Runtime error It will fail to compile. Compiles and runs with no output. Compiles and runs printing Runtime error It will fail to compile. Compiles and runs with no output. Compiles and runs printing ANSWER DOWNLOAD EXAMIANS APP
Declaration and Access Control A package is a collection of Interfaces Classes Editing tools Editing tools and Interfaces Classes and Interfaces Interfaces Classes Editing tools Editing tools and Interfaces Classes and Interfaces 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} static void add(int args...){} void add(Integer... args){} static void add(int...args){} static void add(int... args, int y){} static void add(int[]... args){} static void add(int args...){} void add(Integer... args){} static void add(int...args){} static void add(int... args, int y){} static void add(int[]... args){} 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 hello1 InsideDemo 10 Hello2 Compilation error. Hello2 InsideDemo 10 IllegalArgumentException is thrown at runtime. InsideDemo 10 Hello2 hello1 InsideDemo 10 Hello2 Compilation error. Hello2 InsideDemo 10 IllegalArgumentException is thrown at runtime. ANSWER DOWNLOAD EXAMIANS APP