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. Optimized method invocation

  2. WebSphere

  3. Remote method invocation

  4. Filter

  5. Portable object adapter

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

RMI passes objects by their actual classes, so the behaviour of the objects is not changed when they are sent to another java virtual machine.

Multiple choice
  1. Java Virtual Machine

  2. Operating System

  3. User

  4. Java Development Environment

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

The JVM performs automatic garbage collection to reclaim memory from objects no longer referenced. This is a key Java feature that prevents memory leaks. The OS manages system memory but doesn't know Java's object graph. Users don't manually trigger GC. The JDE is just a development tool bundle.