JAVA Interfaces and Abstract Classes Runnable is a _____ . abstract class interface vaiable class method abstract class interface vaiable class method ANSWER DOWNLOAD EXAMIANS APP
JAVA Interfaces and Abstract Classes interface Test{ int p = 10; //line 1 public int q = 20; //line 2 public static int r = 30; //line 3 public static final int s = 40; //line 4}Which of the above line will give compilation error? 1 4 2 3 None of these 1 4 2 3 None of these ANSWER DOWNLOAD EXAMIANS APP
JAVA Interfaces and Abstract Classes Which of the following is a correct interface? abstract interface A { abstract void print(); { }} interface A { void print() { } } abstract interface A { print(); } interface A { void print(); } abstract interface A { abstract void print(); { }} interface A { void print() { } } abstract interface A { print(); } interface A { void print(); } ANSWER DOWNLOAD EXAMIANS APP
JAVA Interfaces and Abstract Classes Which of the following statements regarding abstract classes are true? A subclass of a non-abstract superclass can be abstract. An abstract class can be extended. An abstract class can be used as a data type. A subclass can override a concrete method in a superclass to declare it abstract. All of these A subclass of a non-abstract superclass can be abstract. An abstract class can be extended. An abstract class can be used as a data type. A subclass can override a concrete method in a superclass to declare it abstract. All of these ANSWER DOWNLOAD EXAMIANS APP
JAVA Interfaces and Abstract Classes Given the following piece of code:public interface Guard{ void doYourJob();}abstract public class Dog implements Guard{ }which of the following statements is correct? This code will not compile, because class Dog must implement method doYourJob() from interface Guard. This code will not compile, because in the declaration of class Dog we must use the keyword extends instead of implements. This code will not compile, because method doYourJob() in interface Guard must be defined abstract. This code will compile without any errors. This code will not compile, because class Dog must implement method doYourJob() from interface Guard. This code will not compile, because in the declaration of class Dog we must use the keyword extends instead of implements. This code will not compile, because method doYourJob() in interface Guard must be defined abstract. This code will compile without any errors. ANSWER DOWNLOAD EXAMIANS APP
JAVA Interfaces and Abstract Classes What will be the output for the below code ?public interface TestInf{ int i =10;}public class Test{ public static void main(String... args){ TestInf.i=12; System.out.println(TestInf.i); }} 10 None of these Compile with error Runtime Exception 12 10 None of these Compile with error Runtime Exception 12 ANSWER DOWNLOAD EXAMIANS APP