in Unknown Category edited by
549 views
1 vote
1 vote

Consider the following statements:

  1. UNIX provides three types of permissions
    • Read
    • Write
    • Execute
  2. UNIX provides three sets of permissions
    • permission for owner
    • permission for group
    • permission for others

Which of the above statement/s is/are true?

  1. Only (i)
  2. Only (ii)
  3. Both (i) and (ii)
  4. Neither (i) nor (ii)
in Unknown Category edited by
by
549 views

2 Answers

0 votes
0 votes

UNIX provides Read, Write and Execute permisision on files
UNIX provides three sets of permissions

  • permission for owner
  • permission for group
  • permission for others.  (Hence option C is correct)
0 votes
0 votes

C. Both (a) and (b) …

 

EXPLANATION UNIX provides three types of permissions using octal numbers

1. Read(R or 4)..

2. Write (W or 2) ..

3. Execute (X or 1) ..

 

UNIX provide three sets of permissions...

For each set of permission, we are having 3 types of permissions.…

# permission for the owner(RWX or 421)...

## permission for a group(RWX or 421) …

### permission for others(RWX or 421)...

 

We can change/modify permissions using chmod, chown, etc...commands....

We can see the permissions for file using -l command ...

 

Hence the correct answer is C. Both (a) and (b).…

 

 

by
Answer:

Related questions