Is a skeleton created by RMI?
A
Correct answer
Explanation
In Java RMI (Remote Method Invocation), a skeleton is indeed created automatically. The skeleton class runs on the server side and receives remote requests, then marshals the call to the actual remote object implementation. Modern RMI generates skeletons dynamically using reflection, but the concept still exists in the RMI architecture.