UNIX Operating System Question:
Download Questions PDF

What is a FIFO in UNIX OS?

Answer:

FIFO are otherwise called as 'named pipes'. FIFO (first-in-first-out) is a special file which is said to be data transient. Once data is read from named pipe, it cannot be read again. Also, data can be read only in the order written. It is used in interprocess communication where a process writes to one end of the pipe (producer) and the other reads from the other end (consumer).

Download UNIX Operating System Interview Questions And Answers PDF

Previous QuestionNext Question
What are links and symbolic links in UNIX OS file system?How do you create special files like named pipes and device files in UNIX OS?