92.
Which one of the following statement is not true?

98.
Which one of the following in true about this program?
#include<stdio.h>
#include<stdlib.h>
#include<string.h>                              
 
int main()
{
    char *ptr;
    printf("%p\n",ptr);
    ptr = (char *)malloc(sizeof(char));
    printf("%p\n",ptr);
    return 0;
}

99.
If a file with execute permissions set, but with unknown file format is executed

100.
If we use a driver for various device files, then

Read More Section(Linux)

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