how to create daemon thread in java?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

where the static methods will live ,on stack ? can you explain brefly

1 Answers  


Explain about the dynamic behavior of core java?

0 Answers  


what should do when using multiple catch() block & what should never do for the same?

1 Answers  


Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }

3 Answers  


What does java final mean?

0 Answers  


How can you handle java exceptions?

0 Answers  


how is final different from finally and finalize in java?

0 Answers   DELL,


How listener identify that the event came from a particular object?

0 Answers  


Why are variables important in research?

0 Answers  


Are arrays static in java?

0 Answers  


Is it possible for a yielded thread to get chance for its execution again?

0 Answers  


Write a java program that prints all the values given at command-line.

0 Answers  


Categories