What classes can be used to store arbitrary number of
objects ?
Answer Posted / nithya
ArrayList, Vector
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is the difference between the ">>" and " >>>" operators in java?
What is hash table in java?
Highest level event class of the event-delegation model?
What is the functionability stubs and skeletons?
Can we use this () and super () in a method?
What is integer parseint?
What is the statements?
Why there are some null interface in JAVA? What does it mean? Give some null interface 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
Differentiate jar and war files?
What is difference between an object and a class?
Is void a data type?
What are the differences between getting and load method?
When a thread is executing a synchronized method , then is it possible for the same thread to access other synchronized methods of an object ?
Is main a function?