Answer Posted / vamsy krishna
One type of communications that can occur between objects is
the event. An event is any action that can be captured in code.
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
What is the difference between && and & in java?
What are internal and external variables?
Why java strings are immutable in nature?
Can we start a thread twice 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 language is pass by reference?
What is a private class in java?
What must a class do to implement an interface in java programming?
What is sortedmap interface?
How do you control extraneous variables?
Discuss different types of errors that generally occur while programming.
Why is the main method static?
Why is stringbuffer not immutable?
What is the static keyword?
Which is better stringbuilder or stringbuffer?