What is meant by Session? Explain something about HTTP Session
Class?
Answer Posted / 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 View All Answers
What is starvation?
What are the benefits of operations?
Why does java does not support multiple inheritance? Explain
What is the generic function?
Can an interface have a class?
Can the garbage collection be forced by any means?
Can you declare an interface method static?
What is the difference between heap memory and stack memory?
What is Enum in Java?
How do you override a method?
What is the main use of java?
What is an example of a conditional statement?
Which is better stringbuilder or stringbuffer?
Can we write a class without main method in java?
What is an infinite loop? How infinite loop is declared?