Multiple choice technology operating systems

can you decipher the file type by its ls -lrt --> "prwxrwxr-x-" ?

  1. The entry is a local socket

  2. The entry is a first-in,first-out (FIFO) special file

  3. The entry is an ordinary file

  4. Purged Permissions

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The permission string 'prwxrwxrwx' indicates a FIFO (first-in, first-out) special file, also known as a named pipe. The first character 'p' identifies the file type as a pipe. FIFOs are used for inter-process communication, where data written to the pipe is read in the same order. This is distinct from regular files (-), directories (d), or sockets (s).