What is daemon thread?
Answers were Sorted based on User's Feedback
Answer / janet
daemon thread is a low priority thread which runs
intermittently in the back ground doing the garbage
collection operation for the java run time system.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / manikandan [ gtec,vellore ]
what said above is correct and it can b created by using
method setDemon()
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / vikki
daemon threads are created by the JVM unlike normal threads
which are created by the user.
The daemon threads provides services to the user-created
threads and they run in the background.
Hence to set them u have to write threadname.setDaemon
(true) and to check whether a thread is a daemon thread or
not you write isDaemon().
| Is This Answer Correct ? | 2 Yes | 0 No |
Where does the session Object stores? If 100 users are connecting to the server. How does it recognize which session belongs to which user?
5 Answers HCL, Mobillo Venture,
Can I map more than one table in a cmp?
Difference Between getRequest and PostRequest?
What are the ways to define classes that can be run as threads?
What is chat area? Explain.
Can we have more than one action servlet?
How to pass parameters in RMI?
Why is actionform a base class rather than an interface?
What is the difference between a menuitem and a checkboxmenuitem?
wahts is mean by dynavalidatorform in struts/
Explain the advantages and disadvantages of detached objects.
what is the proxy pattern?