Multiple choice technology web technology

What is a thin-client application?

  1. A browser that uses a plug-in to process user data.

  2. A distributed application where the client program does not process data, but instead passes data for processing to an enterprise bean running on an application server.

  3. An application that cannot be stopped by a firewall.

  4. An application compiled with the -thin option of the javac command.

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

A thin-client application is characterized by minimal client-side processing. The client primarily handles presentation and user interaction, while passing data to server-side components (like enterprise beans) for actual business logic processing. This reduces client complexity and centralizes processing.

AI explanation

A thin client keeps as little application logic as possible on the client side; instead of processing business data locally, the client passes requests to server-side components — such as an enterprise bean running in an application server — which do the actual processing and return results. This contrasts with a thick/rich client, which handles substantial data processing locally.