Answer Posted / supraja
Arrays
Has special language support
• Iterators
Iterator (i)
• Collections (also called containers)
Collection (i)
Set (i),
HashSet (c), TreeSet (c)
List (i),
ArrayList (c), LinkedList (c)
Map (i),
HashMap (c), TreeMap (c)
Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What do you mean Abstraction in java?
what do you mean by stream pipelining in java 8? Explain
What is the use of using enum to declare a constant?
How do you stop a thread in java?
Why char array is preferred over string for storing password?
Which collection is ordered in java?
What methodology can be utilized to link to a database?
Is void a data type?
What is oop in java?
What is the old name of java?
What is ‘is-a ‘ relationship 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
Which of the following is not an isolation level in the JDBC
Why to use nested classes in java?
How do you call a reference in java?