Explain the difference between GET and POST methods?
Answer Posted / ravikiran(aptech mumbai)
GET:
1).Is used to send request time attributes
2).And can only pass string parameters not any kind of
binary data.
3).The Number of charecters we can pass is limited to 255
4).The data what we sent is exposed to every one in URL as a
query string
5).Best example is passing parameters threw hyperlinks
POST:
1).Data Confidentiality is there
2).We can send unlimited amount of data
3).Binary as well as string data we can transfer
4).Best example is file uploading application
| Is This Answer Correct ? | 45 Yes | 8 No |
Post New Answer View All Answers
What is MIME Type?
Which is the methods of generated servlet?
Which method is called when reference variable is passed in system.net?
Write all the phases defined in servlet life cycle?
What is Request Dispatcher?
Explain web application directory arrangement?
What are the phases of the servlet life cycle?
Servlet is pure java object or not?
What is servlet and list its types?
What are the different types of servlets?
The code in a finally clause will never fail to execute, right?
Why do we need a constructor in a servlet if we use the init method?
Which application server is best for java?
What do you mean by request dispatcher in servlet? Also explain its methods.
Can you refresh servlet in client and server-side automatically?