---
title: "What are difference between GET and POST Methods?"  
description: "What are difference between GET and POST Methods?"  
author: "Sumit Kesarwani"  
published: 2014-11-20  
updated: 2020-09-15  
canonical: https://www.mindstick.com/interview/2253/what-are-difference-between-get-and-post-methods  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 2 minutes  

---

# What are difference between GET and POST Methods?

**GET Method ():**

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 Method ():**

1) Data is not 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.

## Answers

### Answer by Sumit Kesarwani

**GET Method ():**

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 Method ():**

1) Data is not 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.


---

Original Source: https://www.mindstick.com/interview/2253/what-are-difference-between-get-and-post-methods

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
