how to create daemon thread in java?
where the static methods will live ,on stack ? can you explain brefly
Explain about the dynamic behavior of core java?
what should do when using multiple catch() block & what should never do for the same?
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(); } }
What does java final mean?
How can you handle java exceptions?
how is final different from finally and finalize in java?
How listener identify that the event came from a particular object?
Why are variables important in research?
Are arrays static in java?
Is it possible for a yielded thread to get chance for its execution again?
Write a java program that prints all the values given at command-line.