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




Java J2EE Interview Questions
Questions Answers Views Company eMail

Explain the concept of aspect oriented programming?

347

Describe some return types of the controller method.

346

What is the syntax to add a bean in the spring application?

331

Is there any limitation of autowiring? If yes, explain.

358

Explain the use of @controller and @requestmapping annotations in spring mvc.

375

What is jdbc template and how to use it in spring?

397

Explain spring batch architecture.

378

Explain advice and its types.

371

Explain the working principle of spring batch.

373

Explain the different types of transaction management.

396

Explain the concept of dependency injection.

462

What are the ways to insert the collection concept in spring?

322

What are the ways by which configuration metadata can be provided to the spring container?

445

What are the bean scope types?

367

What is the purpose of using bindingresults?

367


Un-Answered Questions { Java J2EE }

How to check the version of Java?

1077


Difference between operator overloading and function overloading

1015


What is hibernate and spring java?

457


What is http forward?

924


What is an example of a constant variable?

1013


What is core java used for?

1054


What is a license file ?

1022


Explain about message selector?

831


What is a managed node?

838


Given a singly linked list, find the middle of the list in a single traversal without using temporary variable.

998


What is spring boot rest api? : Spring Boot

471


What is the difference between a checked and an unchecked exception?

929


What are spring jdbc templates used for?

417


What is one third plus one third as a fraction?

869


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

1755