Consider that class classA, abstract class classB, and
final classC have been defined.Which one of the following
is correct?
1. classA extends classC implements classB
2. class A extends classB, classC
3. classA extends classB
4. classB implements classC
Answers were Sorted based on User's Feedback
Answer / manikandan [ gtec,vellore ].
answer is 3) classA extends classB
Explanation:
Final Class Can't b extend with any other class but we can
instantiated.
| Is This Answer Correct ? | 2 Yes | 0 No |
What are the differences between string and stringbuffer?
write a program that list all permutations of ABCDEF in which A appears before B?
What is OOP Language?
What are the ways in which a thread can enter the waiting state?
Are arrays passed by reference in java?
What is a null point?
What does 3 dots mean in java?
What is getkey () in java?
what is prepare statement? what is calabedtarement?
what really hapens when a object is created using new operator? 1.is it allocates memory to all variables and methods in the class with reference to that object?
What is a dynamic array java?
State the significance of public, private, protected class?