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 Introspection?
Name the class that is used to bind the server object with RMI Registry?
How to implement RMI in Java?
if i know the lenght of collection in hand, should I use Array or Arraylist? justify
Why is main purpose of XML?
Which containers use a border layout as their default layout?
What is the RMI and Socket?
What is a compilation unit?
In HashTable I am storing null value..then what is the error it will show
how the mapping can be done from jsp to actionservlet?
In a multitiered application which tier is the browser in?
Do I have to use jsps with my application?