McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2025
→
Computer Science Engineering (CSE)
→
Operating System Architecture
→
What is the default number of files open...
Q.
What is the default number of files open per user process?
A.
0
B.
1
C.
2
D.
3
Answer» D. 3
839
0
Do you find this helpful?
7
View all MCQs in
Operating System Architecture
Discussion
No comments yet
Login to comment
Related MCQs
You want to add files to a previously created tar file. You want to replace existing files with newer files, how can you do this ?
Given a code snippet below? #define PERMS (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH) int main() { int fd1, fd2; umask(0); fd1 = open(“file1”, O_CREAT | O_RDWR, PERMS) umask(S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH); fd2 = open(“file2”, O_CREAT | O_RDWR, PERMS) return 0; } The newly created files file1 and file2 will have the permissions respectively
By default, GRUB reads its default boot configuration from………
Which of the following umask settings doesn’t allow execute permission to be set by default on directory files
Which of the following umask settings allow execute permission to be set by default on regular files
How can you display a list of files including hidden files
The advantage of binary files over text files is that
The advantage of binary files over text files is that
Which command is used to list out all the hidden files along with the other files?
Which command is used to delete all files in the current directory as well as all files and sub-directories in its subdirectories?