34.
What is the output of this progarm?
#include<stdio.h>
#include<unistd.h>
 
int main()
{
    pid_t child;
    int a, b;
    a = 10;
    b = 20;
    child = fork();
    a = a + b;
    if(child > 0){
        printf("%d\n",a);
    } 
    return 0;
}

36.
What is the output of this program?
#! /usr/bin/awk -f
BEGIN {
    var1="example"
    var2="linux"
    print var1" provides "var2" MCQs "	      
}

38.
The built-in function tolower()

Read More Section(Linux)

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