000-484  Exam

Exam # of questions Description  Update
000-484 103 000-484 Enterprise Connectivity with J2EE V1.3... 02/15/2011
[Practice Test]   [Download Study Guide(PDF)]  [Update Exam]

000-484 - Exam Information
  • Description:000-484 Enterprise Connectivity with J2EE V1.3
  • Passing Score:75%
  • Practice Test - Number of questions:103 questions
  • Simulation Test - Number of questions:103 questions
  • Simulation Test Duration:41 minutes
  • Has explanations:No

Question of the day

Successful handling of a bill payment over the Web requires the following 3 steps: validate the input form values, create and post a BillPaymentTransaction and generate an HTML confirmation page. Which one of the following describes the BEST approach for implementing these steps?

Answer(s)

  1. Create a ProcessBillPayment Servlet that validates form input, creates and posts a BillPaymentTransaction, and generates the confirmation page.
  2. Create a ProcessBillPayment Servlet that validates form input, creates and posts a BillPaymentTransaction, and forwards to a confirmation JSP.
  3. Create a ProcessBillPayment Servlet that validates form input, creates a BillPaymentTransaction, and forwards it to a confirmation JSP that posts the Transaction and generates the confirmation page.
  4. Create a "ProcessBillPayment.jsp" page that validates form input, creates and posts a BillPaymentTransaction, and forwards to a confirmation JSP.
Correct Answer

Create a ProcessBillPayment Servlet that validates form input, creates and posts a BillPaymentTransaction, and forwards to a confirmation JSP.