Multiple choice technology web technology

Why would you design a J2EE application so user data is entered by way of a JavaServer Page and managed by an underlying JavaBeans class?

  1. To make the user interface more interesting.

  2. To simplify application deployment.

  3. To prevent malicious programs from gaining access to sensitive information on your database server.

  4. To make the application much easier to update, maintain, and manage.

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

Using JSP for user interface with JavaBeans for data management separates presentation from business logic (Model-View pattern). This separation makes applications easier to update, maintain, and manage because UI changes don't affect business logic and vice versa. It promotes code reusability and modular design.