Answer Posted / s.ramesh
RUNNNABLE is a state , when a thread is currently processed
by CPU... It is one of the Thread State...
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
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!
How many times may an objects finalize() method be invoked by the garbage collector?
how i secure my site with the https protocol.what are the steps?
Why do threads block on i/o?
Describe responsibilities of Activator?
What is a class loader? What are the different class loaders used by jvm?
Why a client should be multithreading? Explain.
What class is used to create Server side object ?
Why use a datasource when you can directly specify a connection details? (in a J2EE application)
What is mdb and what is the special feature of that?
What is the purpose of the notify() method?
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 metaspace?
What is a tasks priority and how is it used in scheduling?
Why use a datasource when you can directly specify a connection details?