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 |
How many JSP scripting elements and what are they?
explain session tracking. why we used it
In HashTable I am storing null value..then what is the error it will show
which type of objects reference will be given to client?
When you will synchronize your code?
What is Bootstrapping in RMI?
Why use POJO when I can use hashmap
What are JTA/JTS and how they used by client?
Explain ioc concept?
Write a java program to find out the sum of harmonic series : 1 + ½ + 1/3 + ……… up to nth term , for any value of n.
what's the main difference between unix os and linux os?
Do I need to import javlang package any time? Why ?