Answer Posted / rajashree
we use the Msg library to implement a Remote Procedure Call
module, RPC.pm. The idea of RPC is to transparently invoke
a subroutine in another process space and have it behave
exactly as if it had been invoked in its own process. The
following are the features we take for granted while
calling ordinary subroutines, which the RPC module takes
into account:
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you square a number in java?
What is final access modifier in java?
What is the covariant return type?
Define a java class.
Differentiate between vector and array list.
What is the public field modifier?
Explain hashset and its features?
If an application has multiple classes in it, is it okay to have a main method in more than one class?
What is ‘is-a ‘ relationship in java?
Why are constructors used?
What is the use of private static?
What do you mean by mnemonics?
Can we have multiple classes in a single file?
Write a program to print 15 random numbers using foreach of java 8?
what invokes a threads run() method? : Java thread