Which http method is said to be non-idempotent and idempotent?



Which http method is said to be non-idempotent and idempotent?..

Answer / Bhavana Devi

An HTTP GET request is idempotent, meaning that making the same request multiple times will have the same effect as making it once. On the other hand, an HTTP POST request is non-idempotent since the request usually has side effects (e.g., creating a new resource) and making the same request multiple times may lead to different outcomes.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Servlets Interview Questions

What is forward() and include() of servlets RequestDispatcher interface?

6 Answers   HCL,


When to use doget() and when dopost()?

1 Answers  


How we can create war file in servlet?

1 Answers  


Which are the different ways you can communicate between servlets?

1 Answers  


which method in doGet or doPost is use to send binary date to server

2 Answers   HCL,


What is the difference between Servlet Request and Servlet Context when calling a Request Dispatcher?

1 Answers  


Write a servlet to upload file on server.

1 Answers  


how to make the IP address to .com

1 Answers   iGate,


hi actully i hav form columns with origin and destination names .as like as i need to create one more column with name amount. my requirement is when i select origin and destination columns automatically i need to get amount from database.how can i. please tel me with relative code

0 Answers   CTS,


What is servlet mapping?

1 Answers  


What is meant by a web application

1 Answers  


When a client request is sent to the servlet container, how does the container choose which servlet to invoke?

1 Answers  


Categories