What are latest features introduced with java 8?
No Answer is Posted For this Question
Be the First to Post Answer
Why for each loop is used?
Why javac is not recognized?
Which class is the superclass for every class in java programming?
How is it possible for two string objects with identical values not to be equal under the == operator?
Why pass by reference is not possible in java?
What is the size of an array?
What checkbox method allows you to tell if a checkbox is checked?
What is the unit of plancks constant?
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<RegistryKey> 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". } } }
Explain java heap space and garbage collection?
Define array. Tell me about 2-D array.
What are the major drawbacks of external iteration?