Unix Socket Programming

  Home  Operating System  Unix Socket Programming


“Unix Socket Programming Interview Questions and Answers will guide us now that Unix domain socket or IPC socket is a data communications endpoint that is similar to an Internet socket, but does not use a network protocol for communication. It is used in POSIX operating systems for inter-process communication. The correct standard POSIX term is POSIX Local IPC Sockets. So learn Unix Socket Programming with the help of this Unix Socket Programming Interview Questions with Answers guide”



62 Unix Socket Programming Questions And Answers

61⟩ What is Mac, and how is it different from PC? Which one is better for professional users, and why?

Mac OS is the trademarked name for a series of graphical

user interface-based operating systems developed by Apple

Inc. (formerly Apple Computer, Inc.) for their Macintosh

line of computer systems.

PC is Personal computer, a computer whose original sales

price, size, and capabilities make it useful for

individuals

Mac OS works on PC. So both are diffrent.. BOth are counter

part of each other. Mac is Software and PC is hardware.

 254 views

62⟩ What are raw sockets?

A raw socket is a socket that allows access to packet

headers on incoming and outgoing packets. Raw sockets

always receive the packets with the packet header included

as opposed to non-raw sockets which strip the header and

only receive the packet payload.

 214 views