47.
Assuming the files fileA, fileB, fileAB, fileBC and fileABC, exist in a directory, which files match with the pattern file[ABC]?

50.
What is the output of this program?
#include<stdio.h>
#include<stdlib.h>
 
int main()
{
    int fd[2];
    int child;
    char buff[6];
    if(pipe(fd) != 0)               
        perror("pipe");
    child=fork();
    switch(child){
        case -1 :
            perror("fork");
            exit(1);
        case 0 :
            if (write(fd[1],"Linux",6) != 6)
                perror("write");
                break;
            default :
                read(fd[0],buff,6);
                printf("%s\n",buff);
                break;
    }
    return 0;
}

Read More Section(Linux)

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