62.
Which one of the following statement is true about variables in shell?

64.
What is the output of this program?
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
 
int main()
{
    pid_t child;
    int a, status;
    a = 10;
    child = fork();
    switch(child){
        case -1 :
            perror("fork");
            exit(1);
        case 0 :
            printf("%d\n",a);
            break;
        default :
            wait(&status);
            break;
    }
    return 0;
}

68.
The command "as -o example.o example.s" will

69.
Which one of the following is a notification to user space from the kernel that something has changed in the system's configuration?

70.
What is the command to set the execute permissions to all the files and subdirectories within the directory /home/user1/direct

Read More Section(Linux)

Each Section contains maximum 100 MCQs question on Linux. To get more questions visit other sections.