Computer Science, asked by vinaygowd788kep5y9r3, 3 months ago

Which of these is the correct order in which the major tasks performed by a servlet is executed?
1 Read the mplicit HTTP request data sent by various clients (browsers).
2 Process the data and generate results,
B Read the explicit data sent by clients browsers).
4. Send the explicit data (ie, the document to the clients (browsers).
5. Send the implicit HTTP response to the clients (browsers).
3,1,2,4,5
1,3,2,4,5
1,3,2,5,4
3,1,2,5,4​

Answers

Answered by Djalw45637
1

Explanation:

4 IS A RIGHT ANSWER

follow me

like me

mark as branlisy

Answered by vinod04jangid
0

Answer:

(a) 3, 1, 2, 4, 5

Explanation:

Servlets are the java program that run on a Web server or an Application server. It is used to handle requests that come from a Web browser or any other HTTP client and databases or applications on the HTTP server.

Tasks performed by the servlets are -

1. It reads the explicit data sent by the client.

2. It reads the implicit HTTP request data sent by the browser.

3. Generates the results.

4. Sends the explicit data to the client.

5. Sends the implicit HTTP response data.

#SPJ2

Similar questions