nerdexam
Linux_Foundation

LFCS · Question #721

Which of the following file permissions belong to a symbolic link?

The correct answer is C. lrwxrwxrwx. Symbolic links are identifiable by the leading character 'l' in the file's permission string when listed with ls -l.

Submitted by jian89· Apr 18, 2026Essential Commands

Question

Which of the following file permissions belong to a symbolic link?

Options

  • A-rwxrwxrwx
  • B+rwxrwxrwx
  • Clrwxrwxrwx
  • Dsrwxrwxrwx

How the community answered

(53 responses)
  • A
    2% (1)
  • B
    4% (2)
  • C
    92% (49)
  • D
    2% (1)

Why each option

Symbolic links are identifiable by the leading character 'l' in the file's permission string when listed with `ls -l`.

A-rwxrwxrwx

The `-` (dash) as the first character indicates a regular file, not a symbolic link.

B+rwxrwxrwx

The `+` (plus) sign is not a valid first character for a file type indicator; it typically appears at the end of permissions to denote extended ACLs.

ClrwxrwxrwxCorrect

In the standard Unix/Linux long listing format, the first character of the permission string indicates the file type. A lowercase 'l' (as in `lrwxrwxrwx`) specifically denotes that the entry is a symbolic link.

Dsrwxrwxrwx

The `s` (lowercase s) as the first character indicates a socket file, not a symbolic link.

Concept tested: Symbolic link file type indicator

Source: https://man7.org/linux/man-pages/man1/ls.1.html

Topics

#symbolic links#file permissions#file types#ls command

Community Discussion

No community discussion yet for this question.

Full LFCS Practice