Answer Posted / sudeep
poly mean MANY and morphism mean FORMS... so polymorphism is the ability to allow a function to exist in different forms.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is thread pool? How can we create thread pool in java?
Why is stringbuffer thread safe?
What is the technique adopted to create an immutable class?
What does the “final” keyword mean in front of a variable? A method? A class?
What are the Class Libraries ?
What is floor in java?
How does queue work in java?
What is type conversion in java?
What is meant by nested loop?
What are scalar data types?
What is the maximum size of array in java?
What is collection api?
What are the string methods 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 about main thread in java?