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 |
Why string is immutable with example?
Is there any difference between nested classes and inner classes?
What is final?
we have syntax like for(int var : arrayName) this syntax is to find whether a number is in the array or not.but i want to know how to find that number's location.
How many types of packages are there in Java?
Why are functions called methods in java?
Why to give the file name same as the public class name in java?
What is the purpose of the finalize() method?
How do you make an arraylist empty in java?
What are the differences between checked exception and unchecked exception?
Write a program to print fibonacci series
Difference between Applet & Application?