71.
In this program the fifo "my_fifo"
#include<stdio.h>
 
int main()
{
    if (mkfifo("my_fifo",0666) != 0)
        perror("mkfifo");
    return 0;
}

72.
A user executes the following command successfully:
$ chmod +x file1.txt
Which of the following is true of the output of this command?

79.
What is the output of the following code:
os=Unix
echo 1.$os 2."$os" 3.'$os' 4.$os

Read More Section(Linux)

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