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 |
What are the difference between composition and inheritance in java?
what is singleton class in java?
What is appletviewer?
suppose we have an interface & that interface contains five methods. if a class implements that interface then we have to bound that to give tha definition of all five methods in that class. If we declare that class as abstract then can we call only two methods to give the deinition of that method & i don't want to give the definition of all the methods? can it possible
System.out.println("somestring"); It will create any object or not
Difference between a process and a program?
How would you use Bubble Sort to sort the number of elements?
State some situations where exceptions may arise in java?
What is array initialization in java?
Tell me a few examples of final classes defined in Java API?
What is Co-Variant return type in method overriding?
Define a package.