What is meant by Session? Explain something about HTTP Session
Class?



What is meant by Session? Explain something about HTTP Session Class?..

Answer / gaurav khandelwal

A Session refers to all the request that a single client
makes to a server. A session is specific to the user and
for each user a new session is created to track all the
request from that user. Every user has a separate session
and separate session variable is associated with that
session.
HttpSession is an interface that Provides a way to identify
a user across more than one page request or visit to a Web
site and to store information about that user.

Is This Answer Correct ?    11 Yes 2 No

Post New Answer

More Core Java Interview Questions

What are drawbacks of singleton class?

0 Answers  


What is hashmap and map?

0 Answers  


What is the symbol for line break?

0 Answers  


Hi Friends, I am beginner in java. what i know about synchonized keyword is,If more that one 1 thread tries to access a particular resource we can lock the method using synchronized keyword. Then after that how the lock is released and how next thread access that.Please explain with example.

5 Answers  


Explain about method local inner classes or local inner classes in java?

0 Answers  






What is the latest java version?

0 Answers  


What is the difference between quicksort & mergesort? When should they be used? What is their running time?

0 Answers   Akamai Technologies,


Are generics important java?

0 Answers  


Is a boolean variable?

0 Answers  


What are classloaders?

0 Answers  


suppose in a class there is a code like this: { Set hs=new Hashset(); hs.add(new Emp("kathy",1000)); hs.add(new Emp("kathy",2000)); } how can u avoid the above code in your class as set won't allow duplicate objects?

3 Answers  


Can we write method inside a method in java?

0 Answers  


Categories