Explain cookies?
Answers were Sorted based on User's Feedback
Answer / n. balasubramanian
Cookies are small file written in your system by the server
for first request, after that browser send cookies file for
every request from the client machine. This will identify
the client by the server. Cookies are one of the way for
maintaining session. cookies can be disabled by the browser
level settings.
| Is This Answer Correct ? | 42 Yes | 6 No |
Answer / ravikiran(aptech mumbai)
cookies are the clientside components which are saved on the
server side
| Is This Answer Correct ? | 22 Yes | 5 No |
What are the object and class classes used for?
What is the difference between Resultset and Rowset.
How do I stop concurrentmodificationexception?
What is anagram number?
what is the Yield() method used in threads?
What do you mean Abstraction in java?
In java how do we copy objects?
why abstract class will have a constructor?
What is a singleton class? Give a practical example of its usage.
What is the use of arrays tostring () in java?
The following program is Overloading or Overriding? public class PolymorphismEx { public int sampleMethod(int a) { return a; } public String sampleMethod(int a) { return "Is it Overloading or Overriding???"; } }
4 Answers Ness Technologies, TCS,
Why can't we use static class instead of singleton?