which of tha following is not a thread safe class?
a) ArrayList b)Vector c)HashTable d)None
Answer Posted / chandan
Please not confuse others, if u r not sure about the exact
one.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the importance of finally block in exception handling?
What are format specifiers in java?
Can I override protected method 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
Is static variable stored in heap?
How to sort numbers in java without array?
How do you check if two strings are equal in java?
What is final variable?
What is an interface in java? Explain
Can we override data members in java?
Is empty string in java?
In the below example, how many string objects are created?
How do you change an int to a string?
What are JVM.JRE, J2EE, JNI?
What is array initialization in java?