What is RPC?
Answers were Sorted based on User's Feedback
Answer / mohammad shahid
Remote Procedure Call (RPC) is a protocol that one program can use to request a service from a program located in another computer on a network without having to understand the network's details.
It is also called subroutine call or function call
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the O/P of the below Code Snippet ? And how does it imply the concept of call-by-value/call-by-reference. (Note : Pls ignore syntx errors) public class One { sop ("Into One--"); } public class Two extends One{ sop ("Into Two--"); } public class Home { One a; Two t; public static void main(argv[]) { sop ("In Home--"); sop(One.a); sop(Two.a); sop(One.t); sop(Two.t); } }
Difference between JRE and JVM?
3 Answers HeadStrong, Infotech,
explain session tracking. why we used it
What is the RMI and Socket?
When is the best time to validate input?
Define prototype?
What is private static final long serialVersionUID = 1L;
Difference Between getRequest and PostRequest?
For an example, if we have some variable in run method, and we created one or more threads. Does all threads will share the same variable or a copy of variable is created for each thread??
How to get an image from db2 database plz help as soon as possible
when A client sent a request to the server to open facebook page and close the browser after this request .at that time the same user do login by using a different browser then that session id will exist or not for the same client??
What are the states associated in the thread?