Computer Knowledge

Java Enterprise and Web Technologies

2,279 Questions

Java enterprise and web technologies questions focus on J2EE architecture, web services like SOAP, and servlet functionalities. These topics frequently appear in IT officer and specialist scale examinations. Regular practice ensures familiarity with enterprise application components.

HttpServlet methodsSOAP and web servicesEJB architecture rolesJ2EE componentsJSP servlet callingUDDI concepts

Java Enterprise and Web Technologies Questions

Multiple choice
  1. Applet executes on browser.

  2. Servlet has no graphical user interface.

  3. Servlets can be used in web as well as desktop applications.

  4. All of the above

  5. Both (1) and (2)

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

These are the true statements.

Multiple choice
  1. EJB

  2. Java Beans

  3. HTML

  4. JSPs

  5. None of these

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

MVC (Model View Controller) is a pattern for designing software. In the pattern, we separate out the various responsibilities to well defined sets of classes. In the MCV architecture , 'view' components are basically JSPs.

Multiple choice
  1. JINI

  2. JDO

  3. JAXB

  4. RMI

  5. None of these

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Stub is a member of Remote Method Invocation (RMI) technology.

Multiple choice
  1. Throwaway prototype

  2. Evolutionary prototype

  3. Breadboard prototyping

  4. Incremental prototyping

  5. Extreme prototyping

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

Extreme Prototyping as a development process is used especially for developing web applications. Basically, it breaks down web development into three phases, each one based on the preceding one. The first phase is a static prototype that consists mainly of HTML pages. In the second phase, the screens are programmed and fully functional using a simulated services layer. In the third phase, the services are implemented. The process is called Extreme Prototyping to draw attention to the second phase of the process, where a fully functional UI is developed with very little regard to the services other than their contract.