The client socket operations are (in order):~ socket, bind, listen, accept, send, recv, close~ socket, connect, send, recv, close~ socket, connect, listen, close~ socket, accept, listen, close ~~ The server socket operations are (in order):~ socket, bind, listen, accept, send, recv, close~ socket, connect, send, recv, close~ socket, bind, connect, listen, close~ socket, accept, listen, close ~~ Server code sends and receives on the socket returned by the socket() system call.~ True~ False ~~ Which system call returns the socket used by server code for send and recv? ~~ Which system call returns the socket used by client code for send and recv? ~~ Which socket-related system calls return immediately?~ socket, bind, listen~ socket, bind, listen, accept~ socket, connect, bind, listen~ bind, connect, accept