Declaration and Access Control The object is created with new keyword At run-time None of these At Compile-time Depends on the code At run-time None of these At Compile-time Depends on the code ANSWER DOWNLOAD EXAMIANS APP
Declaration and Access Control What can directly access and change the value of the variable qusNo?package com.mypackage;public class Test{ private int qusNo = 100;} None of these Any class. Any class that extends Test. Only the Test class. Any class in com.mypackage package. None of these Any class. Any class that extends Test. Only the Test class. Any class in com.mypackage package. 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 with no output. Compiles and runs printing It will fail to compile. Runtime error Compiles and runs with no output. Compiles and runs printing It will fail to compile. Runtime error ANSWER DOWNLOAD EXAMIANS APP
Declaration and Access Control Suppose a class has public visibility. In this class we define a protected method. Which of the following statements is correct? In a class, you cannot declare methods with a lower visibility than the visibility of the class in which it is defined. This method is only accessible from inside the class itself and from inside all subclasses. This method is accessible from within the class itself and from within all classes defined in the same package as the class itself. From within protected methods you do not have access to public methods. In a class, you cannot declare methods with a lower visibility than the visibility of the class in which it is defined. This method is only accessible from inside the class itself and from inside all subclasses. This method is accessible from within the class itself and from within all classes defined in the same package as the class itself. From within protected methods you do not have access to public methods. ANSWER DOWNLOAD EXAMIANS APP
Declaration and Access Control A package is a collection of Editing tools Editing tools and Interfaces Interfaces Classes Classes and Interfaces Editing tools Editing tools and Interfaces Interfaces Classes Classes and Interfaces 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 Compile time error. None of these one two 0 one two 10 one two 1 Compile time error. None of these one two 0 one two 10 ANSWER DOWNLOAD EXAMIANS APP