55.
What is the output of this program?
#!/bin/bash
function hello_function1 {
    echo "This is first function"	
}
hello_function2() {
    echo "This is second function"
}
hello_function1
hello_function2
exit 0

57.
Create a new file "new.txt" that is a concatenation of "file1.txt" and "file2.txt"

58.
The hard limit of the file descriptors that can be opened by this process will become
#include<stdio.h>
#include<sys/time.h>
#include<sys/resource.h>
 
int main()
{
    struct rlimit limit;
    limit.rlim_cur = 10;
    limit.rlim_max = 20;
    if(setrlimit(RLIMIT_NOFILE,&limit) != 0)
        perror("setrlimit");
    if(getrlimit(RLIMIT_NOFILE,&limit) != 0)
        perror("getrlimit");
    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.