InterviewSolution
| 1. |
What Are The Differences Between A Session And A Cookie? |
|
Answer» Session is stored in server but cookie stored in CLIENT. Session should WORK regardless of the SETTINGS on the client browser. There is no limit on the amount of data that can be stored on session. But it is limited in cookie. Session can store objects and cookies can store only STRINGS. Cookies are faster than session. Session is stored in server but cookie stored in client. Session should work regardless of the settings on the client browser. There is no limit on the amount of data that can be stored on session. But it is limited in cookie. Session can store objects and cookies can store only strings. Cookies are faster than session. |
|