Interview Questions

How many types of cookies are there?

.NET Database ,COM interop,and .NET deployment questions and answers


(Continued from previous question...)

How many types of cookies are there?

Answer1
Two type of cookeies.
a) single valued eg request.cookies(”UserName”).value=”Mahesh”
b)Multivalued cookies. These are used in the way collections are used.
e.g.
request.cookies(”CookiName”)(”UserName”)=”Mahesh”
request.cookies(”CookiName”)(”UserID”)=”ABC003?

rember no value method in multivalued cooki

Answer2
There are two types of cookies:
Session cookies
Persistent cookies

Answer3
2 types, persistant and impersistant.

(Continued on next question...)

Other Interview Questions