Computer Knowledge

Java Enterprise and Web Technologies

2,183 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. 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.

Multiple choice
  1. is an interpreted program that runs on the client

  2. tracks the number of visitors to a website

  3. is a compiled program that usually runs on the client

  4. collects data from visitors to a website

  5. none of these

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

An applet is a small application compiled to bytecode that runs on the client side, typically within a browser or JVM. While applets are interpreted at runtime, they are first compiled to bytecode before distribution. Visitor tracking and data collection are web server functions, not applet characteristics. The key distinction is that applets are pre-compiled programs delivered to clients.