51.
Pipes are used rather than temporary files for communication between the various stages of compilation in gcc when

52.
What is the output of this pogram?
#! /usr/bin/awk -f
BEGIN {
    system("date")
    print "example"
}

53.
What is the output of the program?
#! /usr/bin/awk -f
BEGIN {
    a[1]="example"
    a[2]="example"
    for(i=1;i<3;i++) {
        print a[i]
    }
}

55.
What is makefile?

59.
What is the use of strace command?

60.
This program will print the
#include<stdio.h>
#include<sys/time.h>
#include<sys/resource.h>
 
int main()
{
    struct rlimit limit;
    getrlimit(RLIMIT_FSIZE,&limit);
    printf("%lu\n",limit.rlim_cur);
    printf("%lu\n",limit.rlim_max);
    return 0;
}

Read More Section(Linux)

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