1. The assembly code is converted into the machine code by
2. The preprocessor removes the . . . . . . . . from the source code.
3. The file /proc/[PID]/mountinfo contains
4. Which of the following time stamps need not exist for a file on traditional unix file system
5. On x86-32 Linux, at which address the user stack resides normally?
6. What will happen as we press the "Ctrl+c" key after running this program?
#include<stdio.h>
#include<signal.h>
void response (int);
void response (int sig_no)
{
printf("Linux\n");
}
int main()
{
signal(SIGINT,response);
while(1){
printf("Example\n");
sleep(1);
}
return 0;
}
#include<stdio.h>
#include<signal.h>
void response (int);
void response (int sig_no)
{
printf("Linux\n");
}
int main()
{
signal(SIGINT,response);
while(1){
printf("Example\n");
sleep(1);
}
return 0;
}
7. The GDB command "show output-radix"
8. What communication command provides communication to another user logged on by writing to the bottom of their terminal?
9. Superuser can change the . . . . . . . . permissions of any file.
10. At the end of kernel bootstrap, which process is started?
Read More Section(Linux)
Each Section contains maximum 100 MCQs question on Linux. To get more questions visit other sections.