
Sockets in some kind of device (basically a computer)
provide the communication mechanism between two devices(computers) using TCP. A
client program which represent the client end creates a socket (virtual) on its
end of the communication and attempts to connect that socket to a server.
When the connection is made, the server creates a socket
object(virtual) on its end of the communication. Here server...