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
Explain about serializable interface in java?
Can inner class extend any class?
Explain features of interfaces in java?
2) Suppose there are 5 directories having lot of files (say txt files) in each directory. 2 things :- 2.1) You want to search for filenames which have a particular pattern. 2.2) Out of these filtered files you want to search for a particular keyword or a search string. How can you achieve this?
What is floating data type?
Why is it called buffering?
Explain different types of wrapper classes in java?
What does sizeof return?
What is function overriding and overloading in java?
What are anonymous inner classes?
Explain the different forms of polymorphism?
How objects of a class are created if no constructor is defined in the class?
What is a singleton factory?
Name four container classes.
What is array sorting in java?