---
title: "What are benefits and limitations of using Cookies?"  
description: "What are benefits and limitations of using Cookies?"  
author: "Pushpendra Singh"  
published: 2010-10-25  
updated: 2020-09-18  
canonical: https://www.mindstick.com/interview/122/what-are-benefits-and-limitations-of-using-cookies  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 2 minutes  

---

# What are benefits and limitations of using Cookies?

**Advantages:**

a. They are simple to use.\
b. Light in size, thus occupy less memory. \
c. Stores server information on client side\
d. Data need not to be sent back to server. \
e. Cookies persist for much longer period of time than a session.

## Disadvantages:

a. Since they are stored on the client side in plain text, they are not secure.

b. Number of cookies that can be stored and their size is limited.

c. They don't work if security level is set too high in browser.

d. Some people might just disable cookies on their browsers.

## Answers

### Answer by Pushpendra Singh

**Advantages:**

a. They are simple to use.\
b. Light in size, thus occupy less memory. \
c. Stores server information on client side\
d. Data need not to be sent back to server. \
e. Cookies persist for much longer period of time than a session.

## Disadvantages:

a. Since they are stored on the client side in plain text, they are not secure.

b. Number of cookies that can be stored and their size is limited.

c. They don't work if security level is set too high in browser.

d. Some people might just disable cookies on their browsers.


---

Original Source: https://www.mindstick.com/interview/122/what-are-benefits-and-limitations-of-using-cookies

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
