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
How can we invoke another servlet in a different application?
Why doesn’t a servlet include main()? How does it work?
What is generic servlet class?
Can you send an authentication error from a servlet?
What methodology can be followed to store more number of objects in a remote server?
What are the difference between session and cookies in servlet? Explain
How do you create a cookie using servlet?
Describe servlet?
What are the differences between forward() method and sendredirect() methods?
Why is Servlet so popular?
How to read request headers from servlets?
What is session tracking?
What do you mean by web applications? Explain web application directory arrangement?
What exactly are the functions of servlet?
why we should override only no-agrs init() method.