Q661
Open questionSelect an option to see the answer and solution.
Practice every MCQ with options. Use Show answers when you want the correct option and solution.
996
Questions
34/50
Page
Pick an option on a question to see the right answer and solution.
Q661
Open questionSelect an option to see the answer and solution.
Q662
Open questionSelect an option to see the answer and solution.
Q663
Open questionSelect an option to see the answer and solution.
Q664
Open questionSelect an option to see the answer and solution.
Q665
Open questionSelect an option to see the answer and solution.
Q666
Open questionSelect an option to see the answer and solution.
Q667
Open questionSelect an option to see the answer and solution.
Q668
Open questionSelect an option to see the answer and solution.
Q669
Open questionSelect an option to see the answer and solution.
Q670
Open question#include<stdio.h>
#include<fcntl.h>
int main()
{
int rfd, wfd, count;
char buff[11];
if (mkfifo("/tmp/test_fifo",0666) != 0)
perror("mkfifo");
wfd = open("/tmp/test_fifo",O_WRONLY|O_NONBLOCK);
count = write(wfd,"Example",11);
printf("%d\n",count);
rfd = open("/tmp/test_fifo",O_RDONLY|O_NONBLOCK);
count = read(rfd,buff,11);
return 0;
}Select an option to see the answer and solution.
Q671
Open question#include<stdio.h>
int main()
{
if (mkfifo("my_fifo",0666) != 0)
perror("mkfifo");
return 0;
}Select an option to see the answer and solution.
Q672
Open question$ chmod +x file1.txt
Which of the following is true of the output of this command?Select an option to see the answer and solution.
Q673
Open questionSelect an option to see the answer and solution.
Q674
Open questionSelect an option to see the answer and solution.
Q675
Open questionSelect an option to see the answer and solution.
Q676
Open questionSelect an option to see the answer and solution.
Q677
Open questionSelect an option to see the answer and solution.
Q678
Open questionSelect an option to see the answer and solution.
Q679
Open questionos=Unix
echo 1.os" 3.'osSelect an option to see the answer and solution.
Q680
Open questionSelect an option to see the answer and solution.