Java Abstract Class and Interface
Question 1 |
Which of the following is FALSE about abstract classes in Java
If we derive an abstract class and do not implement all the abstract methods, then the derived class should also be marked as abstract using 'abstract' keyword | |
Abstract classes can have constructors | |
A class can be made abstract without any abstract method | |
A class can inherit from multiple abstract classes. |
Discuss it
Question 2 |
Which of the following is true about interfaces in java.
1) An interface can contain following type of members. ....public, static, final fields (i.e., constants) ....default and static methods with bodies 2) An instance of interface can be created. 3) A class can implement multiple interfaces. 4) Many classes can implement the same interface.
1, 3 and 4 | |
1, 2 and 4 | |
2, 3 and 4 | |
1, 2, 3 and 4 |
Discuss it
Question 3 |
Predict the output of the following program.
abstract class demo { public int a; demo() { a = 10; } abstract public void set(); abstract final public void get(); } class Test extends demo { public void set(int a) { this.a = a; } final public void get() { System.out.println("a = " + a); } public static void main(String[] args) { Test obj = new Test(); obj.set(20); obj.get(); } }
a = 10 | |
a = 20 | |
Compilation error |
Discuss it
Question 3 Explanation:
Final method can’t be overridden. Thus, an abstract function can’t be final.
Question 4 |
Type IV JDBC driver is a driver
which is written in C++ | |
which requires an intermediate layer | |
which communicates through Java sockets | |
which translates JDBC function calls into API not native to DBMS |
Discuss it
Question 4 Explanation:
JDBC type 4 driver,works directly by connecting to the database server through socket connections and converts JDBC calls to vendor-specific database protocols.These drivers don't require any intermediate layer.
So, option (C) is correct.
Question 5 |
Which of the following statement(s) with regard to an abstract class in JAVA is/are TRUE ?
I. An abstract class is one that is not used to create objects.
II. An abstract class is designed only to act as a base class to be inherited by other classes.
Only I | |
Only II | |
Neither I nor II | |
Both I and II |
Discuss it
Question 5 Explanation:
Abstract data class is not used to create objects in Java and it is designed only to act as a base class to be inherited by other classes.
Both Statement are correct.
For more information Refer:Abstract Classes in Java
Option (D) is correct.
There are 5 questions to complete.