Difference between GET and POST Metods

 Posted by Syedshakeer on 2/15/2009 | Category: HTML 5 Interview questions | Views: 32112
Answer:

Difference Between GET and POST methods

GET:
1) Data is appended to the URL.
2) Data is not secret.
3) It is a single call system
4) Maximum data that can be sent is 256.
5) Data transmission is faster
6) This is the default method for many browsers

POST:
1) Data is appended to the URL.
2) Data is Secret
3) It is a two call system.
4) There is no Limit on the amount of data.That is characters any amount of data can be sent.
5) Data transmission is comparatively slow.
6) No default and should be Explicitly specified.


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Posted by: Akiii on: 7/11/2011 | Points: 10
It should be:-

POST:
1) Data is not appended to the URL


Akiii
Posted by: Etechpulse on: 4/4/2014 | Points: 10
very informative.. Thanks.
Have a look at this link http://www.etechpulse.com/2012/10/what-is-difference-between-get-and-post.html

Login to post response