With a umask value of 112, what is the default permission assigned to newly created regular file?

R

Ram Sharma · Follow
Coach · 123.28K points

With a umask value of 112, what is the default permission assigned to newly created regular file?

(A) -rw-rw-r–

(B) -r-xr-x-r–

(C) -rw-rw-r–

(D) —x–x-wx

Category: Linux

Be the first to upvote this question

0 Upvote   Share

Share This:  

Share this question in group:

Login required to perform this action.


Create an account | Already have account? Login

Close

About Us

McqMate.com is an educational platform, Which is developed BY STUDENTS, FOR STUDENTS, The only objective of our platform is to assist fellow students in preparing for exams and in their Studies throughout their Academic career.

what we offer ?

» We provide you study material i.e. PDF's for offline use.
» We take free online Practice/Mock test for exam preparation.
» Each MCQ is open for further discussion on discussion page.
» All the services offered by McqMate are free.

S

Stasenndb

New member

  • Sep 19, 2021
  • #1

With a umask value of 112, what is the default permission assigned to newly created regular file?
A. —x–x-wx
B. -rw-rw-r–
C. -r-xr-x-r–
D. -rw-rw-r–

Sort by date Sort by votes

Đ

Đỗ Thu Hiền

New member

  • Sep 19, 2021
  • #2

Answer: d
Explanation: None.

Upvote 0 Downvote

You must log in or register to reply here.

In linux, a device driver can work without the

Previous Thread

Given the command $ chmod o-w datafile

Next Thread

Share:

Facebook Twitter Reddit Pinterest Tumblr WhatsApp Email Link

With a umask value of 112, what is the default permission assigned to newly created regular file?

—x–x-wx

-rw-rw-r–

-r-xr-x-r–

-rw-rw-r–

Answer : D

Sponsored Ad

अगर आप कम्पटीशन एग्जाम की ऑनलाइन तैयारी कर रहे है तो यहाँ से आप फ्री में Online Test

Free Online Test

Linux Online Test in English Set-4

20 Questions | 10 Minutes

Start Now

View More Related Question

1) The command chmod 4777 a.out

will set the suid bit of a.out

will set the suid bit of a.out only if the command is issued by root

is not a valid command

will set the sticky bit of a.out

View Answer

2) The process of starting up a computer is known as

Boot Loading

Boot Record

Boot Strapping

Booting

View Answer

3) The permission -rwxr-sr– represented in octal expression will be

4) A user executes the following command successfully: $ chmod +x file1.txt Which of the following is true of the output of this command?

The command results in adding execute permission to the user who ran this command

The command results in adding execute permission for the owner of the file

The command results in an error since the file is not an executable file

The command results in adding execute permission for all users (i.e., user,group & others)

View Answer

5) Which command is used to assign read-write permission to the owner?

chmod a+r file

chmod o+r file

chmod u=rw file

chmod og-r file

View Answer

What will be the default file permission If the umask value is 123?

Final result : If UMASK is 123 then directory's permission will be 654 and file's permission will be 644.

What are the default permissions of a newly created file?

On Linux, by default, when we create new files, they are given rw-rw-r– permissions. The r, w, and x signify the read, write, and execute permissions, respectively. Let's break down the rw-rw-r– permission for files: The first rw- signifies read-write permissions for the user or the owner of the file.

What is the default value of umask?

By default, the system sets the permissions on a text file to 666, which grants read and write permission to user, group, and others, and to 777 on a directory or executable file. The value assigned by the umask command is subtracted from the default.

What is the umask for 777?

For example, if umask is set to 022, 22 is displayed. To determine the umask value you want to set, subtract the value of the permissions you want from 666 (for a file) or 777 (for a directory). ... Default File Permissions ( umask ).