What is multithread synchronizing ?
Answer Posted / brijesh
hi...
it is a process in which therd is spread seonity
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
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?
How are commas used in the intialization and iteration parts of a for statement?
Do I have to use jsps with my application?
Write a program to show synchronization?
What is a tasks priority and how is it used in scheduling?
What is the difference between ear, jar and war file?
what is handle?
Do we need to override service() method
whats is statement and procedure
What is the difference between the string and stringbuffer classes?
Name the class that is used to bind the server object with RMI Registry?
Java is fully object oriented languages or not?
What is an abstract method?
What is in-memory replication?
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!