InterviewSolution
Saved Bookmarks
| 1. |
What do you understand about Socket Programming? State the advantages and disadvantages of Sockets in Java. |
|
Answer» Socket programming is a technique for allowing two network nodes to communicate. One socket (node) listens for traffic on a specified port at a specific IP address, while the other socket connects to it. The listener socket is created by the server while the CLIENT is connected to it. Some advantages of Java Sockets are as follows:
Some disadvantages of Java Sockets are as follows:
|
|