Multiple choice technology web technology

What is the syntax to invoke a servlet within the HTML tag ?

  1. <FORM METHOD="POST|GET" ACTION="application_URI/JSP_URL"></FORM>

  2. <FORM METHOD="POST|GET" ACTION="application_SERVLET/JSP_URL"></FORM>

  3. <FORM METHOD="POST|GET" ACTION="application_URI/SERVLET_URL"></FORM>

  4. <FORM METHOD="POST|GET" ACTION="application_SERVLET_URI/JSP_URL"></FORM>

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

In standard Java web applications, servlets are mapped using URIs in the deployment descriptor or annotations, typically formatted as application_URI/SERVLET_URL within HTML form action attributes. This correctly routes the form submission to the appropriate server-side servlet component.