What are the latest versions in JAVA related areas?

Answer Posted / guest

jdk1.6 update 10

Is This Answer Correct ?    12 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is string pool?

614


if u open login & logout ,how can udisplay the timelogin & logout members ?

1741


What does singleton mean in java?

497


How many types of equations are there?

525


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 subkeys = key.subkeys(); subkeys.hasNext();) { RegistryKey subkey = subkeys.next(); System.out.println(subkey.getName()); // You need to check here if there's anything which matches "Mozilla FireFox". } } }

1336






Enlist few advantages of inheritance?

566


Explain about the performance aspects of core java?

538


Explain when classnotfoundexception will be raised ?

556


What is memory leak and how does java handle it?

508


What is lazy programming?

547


What are java packages?

565


What is the scope or life time of instance variables?

644


What carriage return means?

514


What is a short in java?

487


Will the jvm load the package twice at runtime?

558