Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Core Java Interview Questions
Questions Answers Views Company eMail

What is array and arraylist in java?

1104

Can a hashset contain duplicates java?

977

Which collection is thread safe in java?

985

Which collection is best for sorting in java?

1126

What is the maximum size of arraylist in java?

1002

What is the size of arraylist in java?

1024

What is use of arraylist in java?

1176

Which java collection does not allow null?

1145

What is listnode in java?

988

Which collection does not allow duplicates in java?

975

What is arraylist e in java?

1053

What is difference between arraylist and list in java?

1088

Is null or empty java?

980

What is thread synchronization in java?

890

Which is the class in java?

1040


Post New Core Java Questions

Un-Answered Questions { Core Java }

What is integer valueof?

1098


Why should we use singleton pattern instead of static class?

928


What do you mean by exception handling in Java?

1288


What are the three types of design patterns?

962


What does regex mean?

1010


What is lazy programming?

1039


What is void in java?

1075


How can we achieve thread safety in java?

1146


Is a method a procedure?

1048


What are the 7 types of characters?

1077


What are the new features in java 8? Explain

949


what is thread? : Java thread

981


What is a java object and java application?

1047


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". } } }

1798


Explain about main() method in java ?

1064