What is Session and cookies?Explain in detail with an
example?

Answers were Sorted based on User's Feedback



What is Session and cookies?Explain in detail with an example?..

Answer / ravikiran

session will keep track of user interaction of a single client

cookies are the ones which are the small server side
entities to store the client side data inside it.

Is This Answer Correct ?    27 Yes 8 No

What is Session and cookies?Explain in detail with an example?..

Answer / debapriya maity

we r all familiar with the method given below

HttpSession session==request.getSession(true);
what happen here

Container whenever gets a request for a session from a client,
it checks out whether the request is for existing or a new
one,how it does.


If a new session: creates a cookie(small text file) ,stuffs
the session id ,and send it to the client as apart of
response headers (Set Cookie:)

existing one---gets the sessionid ,searches for the matching
session and associate with the request.

Now thing if ur browser is cookies disable, what will happen
next?? :)

Is This Answer Correct ?    14 Yes 3 No

What is Session and cookies?Explain in detail with an example?..

Answer / manikandan [ gtec,vellore ].

Session,Keeps a track of a User activities across the web pages.

Cookies,it is a small text file creates by a application
server and stored in a client environment.it stores a client
id and cookies can b read by appropriate application server

Is This Answer Correct ?    12 Yes 1 No

What is Session and cookies?Explain in detail with an example?..

Answer / viral koradiya

Cookie is the most important topic in servlet.

Cookies,it is a small text file creates by a application
server .
cookie stored in a client environment.it stores a client
id and cookies can b read by appropriate application server

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More Core Java Interview Questions

What is t in generics in java?

0 Answers  


Why enumeration is faster than iterator?

0 Answers  


Why is stringbuffer thread safe?

0 Answers  


We are seeing so many videos/audios as many web sited. But question is these videos or audios are stored in Databases ( Oracle, Mysql, Sybase,... ) or stored any file directory from there they will give the link for that? Pls explain and give sample code to achieve this one? Thanks, Seenu.

0 Answers   Symphony,


What is the replace tool?

0 Answers  






What is meant by class?

0 Answers  


What is the difference between equals() and?

0 Answers  


Can we use catch statement for checked exceptions when there is no chance of raising exception in our code?

0 Answers  


What are methods in java?

0 Answers  


class a extends b { } class b extends a { } why java doesn't support cyclic pls explain me with example

3 Answers   Wipro,


Write a program for recursive Traverse?

1 Answers  


Can we sort arraylist in java?

0 Answers  


Categories