Can a class extend abstract class or interface? why
Answer Posted / mahesh
A class can extend an Abstract class but it can't extend an
interface.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Explain the protected field modifier?
What is stack explain?
Is there any way to find whether software installed in the
system is registered by just providing the .exe file?
I have tried the following code but its just displaying the
directory structure in the registry.
Here the code :
package com.msi.intaller;
import java.util.Iterator;
import ca.beq.util.win32.registry.RegistryKey;
import ca.beq.util.win32.registry.RootKey;
public class RegistryFinder {
public static void main(String... args) throws Exception
{
RegistryKey.initialize(RegistryFinder.class.getResource("jRe
gistryKey.dll").getFile());
RegistryKey key = new RegistryKey(RootKey.HKLM,
"Software\\ODBC");
for (Iterator
What 4 doubled?
Name few java util classes introduced with java 8 ?
What is a map? What are the implementations of map?
Why multiple inheritance is not supported by java?
Can we split string with in java?
Can we override the overloaded method?
Which method returns the length of a string?
What is java in simple terms?
what is server side caching?
What environment variables do I need to set on my machine in order to be able to run java programs?
What are the three best choices for a development environment?
Explain abstract class in java?