InterviewSolution
Saved Bookmarks
| 1. |
How well do you know Socket Programming? List the benefits and drawbacks of Sockets in Java. |
|
Answer» Socket programming is a method for allowing two network nodes to communicate with one ANOTHER. One socket (node) monitors traffic on a specific port at a GIVEN IP address, while the other socket connects to it. The server creates the listener socket while the client is connected to it. The following are some of the benefits of Java Sockets:
The following are some of the drawbacks of Java Sockets:
|
|