The document contains questions and answers related to network programming and UNIX system concepts. Some key points covered include:
- File descriptors are integers used by the kernel to identify open files for a process. A program is executed as a process, which has a unique process ID.
- There are two types of CPU times in UNIX - user CPU time for user instructions, and system CPU time for when the kernel executes on behalf of the process.
- Common IPC methods in UNIX include pipes, message queues, semaphores and shared memory. Message queues store prioritized messages in a linked list.