What is an asynchronous procedure call? Explain how asynchronous procedure calls can be implemented in java?
Im not sure if my answer to this question is correct?
My answer: Asynchronous Procedure Calls are when a procedure is interrupted and goes to work on another thread/procedure before returning to itself at a later stage.
Asynchronous Procedure Calls can be implemented in Java through the use of wait/notify, condition variables and semaphores.