Linux Socket Programming Question:

Download Job Interview Questions and Answers PDF

What is the difference between socket & port?

Linux Socket Programming Interview Question
Linux Socket Programming Interview Question

Answer:

port : a particular port number on a host
socket: a host and a port

like
-> http port = 80
-> when you fire up google.com
the socket on the server side is google.com:80 this is the server side socket

on your local system where you are browsing the socket is
yourip:port above 1024

Download Linux Socket Programming Interview Questions And Answers PDF

Previous QuestionNext Question
How to get client port number in server socket programming?Why bind system call is required in socket programming?