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 |
What is JNI?
How would you reatach detached objects to a session when the same object has already been loaded into the session?
Define aop(assepct oriented programing)?
What is the purpose of the wait() method?
What are the diff types of exception?
If we opened windows notepad 4 times, does it starts 4 processes or 4 threads?
what is the port number of RMI?
What are externizable interface?
Different between Struts and Spring? or Why use Spring, if you are already using Struts?
A user of a web application sees a jsessionid argument in the URL whenever a resource is accessed. What does this mean? a. The form must have the field jsessionid b. URL rewriting is used as the session method c. Cookies are used for managing sessions
Dear freinds... I want to know how to write self mapping for a table using hibernate?
What is the applet sandbox?