What are the advanatages of RMI ?
Answer / satish
Handles threads and Sockets for underlying communication.
Server-side implementation can be changed without the knowledge of the client side.
To extend an RMI solution, you can extend or add new classes, just like in a non-distributed application.
| Is This Answer Correct ? | 2 Yes | 0 No |
How do you iterate in Hashmap?
Explain the advantages and disadvantages of detached objects.
wahts is mean by dynavalidatorform in struts/
What is the purpose of the finally clause of a try-catch-finally statement?
if i know the lenght of collection in hand, should I use Array or Arraylist? justify
What are the types of scaling?
Why threads will block on I/O?
what is disadvantage of thread?
Which are the different segments of memory?
What is thread deadlock? How to resolve thread deadlock?
life cycle of an applet?
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!