How many ways can a thread be used?
Answer Posted / harsha
The thread implemented by using runnable interface is more
advantageous. The other way of using a thread is by
inheriting from the Thread class.
Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
What is the RMI and Socket?
What is re-entrant. Is session beans reentrant. Is entity beans reentrant?
How would you detect a keypress in a jcombobox?
Explain about local interfaces.
How is a java object message delivered to a non-java client?
What is the map interface?
Why a client should be multithreading? Explain.
What is a tasks priority and how is it used in scheduling?
What is a modular application? What does module-relative mean?
how i secure my site with the https protocol.what are the steps?
In RMI, inorder to sent the stub reference to the client, is we have to load the server object first into the memory or can we directly sent reference to the client?
What is Stream Tokenizer?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
Name the eight primitive java types.
Which class is the immediate superclass of the menucomponent class?