Answer Posted / dipil t t
We can achieve this in java by using Interface conscept.
| Is This Answer Correct ? | 6 Yes | 10 No |
Post New Answer View All Answers
What are the types of inner classes (non-static nested class) used in java?
How do you declare a variable?
What is linkedlist in java?
Can singleton class be serialized?
Explain the importance of throws keyword in java?
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 difference between future and callable interface in java?
Are arrays immutable in java?
What are java packages? What's the significance of packages?
Can java cast null?
How to make object serializable in java?
How does a cookie work in Servlets?
What is difference overloading and overriding?
What is pre increment and post increment in java?
Explain the difference between call by refrence and call by value?