If we do not specify the executable file name at the compilation time in GCC, then in linux the compiler creates executable named as
Select an option to see the answer and solution.
How can you search for blank line in a file?
Select an option to see the answer and solution.
What is the output of this program?
#!/bin/bash
a=10; b=20
c=$((++a))
let a=c+a
echo $a
exit 0
Select an option to see the answer and solution.
A communication end-point is identified by
Select an option to see the answer and solution.
If the fork() system call returns -1, then it means?
Select an option to see the answer and solution.
Which command can be used to update the shared library system?
Select an option to see the answer and solution.
Concatenation is performed by
Select an option to see the answer and solution.
Which one of the following can be used to specify the directory to search the dependencies and target files?
Select an option to see the answer and solution.
Which are the two types of device files?
Select an option to see the answer and solution.
Which of the following UNIX flavor is from IBM?
Select an option to see the answer and solution.
A user creates a link to a file file1 using the following command "ln file1 file2". Which of the following is not true?
Select an option to see the answer and solution.
Which signal is sent when the Child process terminates?
Select an option to see the answer and solution.
Obtaining of the PID can be done by the utility
Select an option to see the answer and solution.
Which option of grep displays the line number as well?
Select an option to see the answer and solution.
What is the output of this program?
#!/bin/bash
for i in 2 3 7
do
echo "Example"
done
exit 0
Select an option to see the answer and solution.
The $ variables in a shell script context designates
Select an option to see the answer and solution.
What is the output of this program?
#! /usr/bin/awk -f
BEGIN {
a=10;
b=10;
print a==b ? "true":"false"
}
Select an option to see the answer and solution.
The /proc directory contains
Select an option to see the answer and solution.
Which command is used to display all the files including hidden files in your current and its subdirectories ?
Select an option to see the answer and solution.
Which of the following is "NOT" a UNIX variant ?
Select an option to see the answer and solution.