Answer Posted / mohd amir
It is not a keyword
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
Differentiate between run time error and syntax error.
Give any two differences between C++ and java.
Can we have multiple public classes in a java source file?
What is file in java?
What is the old name of java?
What are the two ways in which thread can be created?
What do you mean by exception handling in Java?
Can a constructor be protected?
Difference between abstract and concrete class ?
Why do we need autoboxing in java?
When a thread is executing a synchronized method , then is it possible for the same thread to access other synchronized methods of an object ?
What is the purpose of using break in each case of switch statement?
Can abstract class have private constructor?
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
Can we create object of static class?