Each device in the device driver model is represented by a . . . . . . . . objec
Each device in the device driver model is represented by a . . . . . . . . object.
Using which command you find resource limits to the session?
Using which command you find resource limits to the session?
What is the output of this program? #!/bin/bash var1=10 $var1=20 echo $var1 exit
What is the output of this program? #!/bin/bash var1=10 $var1=20 echo $var1 exit 0
Which niceness value among the following indicate most favorable scheduling?
Which niceness value among the following indicate most favorable scheduling?
Command used to check shared memory is
Command used to check shared memory is
Which command removes a directory from directory stack?
Which command removes a directory from directory stack?
If the umask value is 0002. what will be the permissions of new directory
If the umask value is 0002. what will be the permissions of new directory
Which one of the following variables is used within GDB to hold on to a value an
Which one of the following variables is used within GDB to hold on to a value and refer to it later?
Which of the following values for STAT column of ps command is not true:
Which of the following values for STAT column of ps command is not true:
Proc filesystem does not contains
Proc filesystem does not contains
What is the output of this program? #include #include int main() { int fd, count
What is the output of this program? #include #include int main() { int fd, count; char ch; fd = open(“demo.txt”,O_RDWR|O_CREAT); write(fd,”s”,1); lseek(fd,0,SEEK_SET); write(fd,”d”,1); lseek(fd,0,0);…
What is the output of this program? #include #include #include #include #include
What is the output of this program? #include #include #include #include #include #include struct data_st{ long int id; char buff[11]; }; int main() {…