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
How do you clear a method in java?
What do you understand by the term singleton?
What is anonymous inner class?
Can anonymous class have constructor?
What is a method vs function?
How do you pass by reference?
What is data object example?
What happens when main () method is declared as private?
Can list be final in java?
Is int primitive data type?
Is java a compiler?
Java.util.regex consists of which classes?
What is the use of string and stringbuffer?
What is a static class in java?
Can one thread block the other thread?