What are null interfaces in JAVA ? and give me some
examples?
Answer Posted / devesh dashora
null interface is such which have no abstract methods
declaration in interface definition. For Ex. Clonable
interface.
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
How many JVMs can run on a single machine and what is the meaning of Just-In-Time (JIT) compiler?
What are wrapper classes in java?
What is the difference between a method and a function in alice?
What is close method? How it's different from Finalize & Dispose?
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 is the point of polymorphism java?
What is the difference between keyword and identifier?
What are features of java?
What is a string token?
what is the difference between yielding and sleeping? : Java thread
Explain creating threads by extending thread class ?
Does constructor creates the object ?
State the main difference between c++ and java?
What does provide mean construction?
What’s the difference between unit, integration and functional testing?