Linux Search Pattern Interview Preparation Guide
Download PDF

Linux Search Pattern frequently Asked Questions by expert members with experience in Search Pattern. These questions and answers will help you strengthen your technical skills, prepare for the new job test and quickly revise the concepts

45 Search Pattern Questions and Answers:

Table of Contents

Search Pattern Interview Questions and Answers
Search Pattern Interview Questions and Answers

12 :: What is the output of this program?

#include<stdio.h>
#include<fcntl.h>

int main()
{
int fd, fd2, ret;
fd = open("san.c",O_RDONLY);
ret = close(fd2);
printf("%dn",ret);
}
a) 0
b) 1
c) -1
d) none of the mentioned

c) -1
Explanation:
The "close" system call closes a file descriptor but in the program "fd2″ in not a file descriptor. Hence close system call returns -1.
Output:
[root@localhost google]# gcc -o san san.c
[root@localhost google]# ./san
-1
[root@localhost google]#

14 :: What is the output of this program?

#include<stdio.h>
#include<fcntl.h>

int main()
{
int fd, count;
char ch[10];
fd = open("google.txt",O_RDWR|O_CREAT);
write(fd,"linux",5);
lseek(fd,2,SEEK_END);
write(fd,"san",3);
lseek(fd,0,0);
count = read(fd,ch,10);
printf("%sn",ch);
return 0;
}
a) linux
b) linuxsan
c) linux san
d) none of the mentioned

a) linux
Explanation:
The lseek function allows the file offset to be set beyond the end of the file and if the data is latter written this point, subsequent reads of the data in the gap returns NULL.
Output:
[root@localhost google]# gcc -o san san.c
[root@localhost google]# ./san
linux
[root@localhost google]#

15 :: Tell me what is the output of this program?

#include<stdio.h>
#include<fcntl.h>

int main()
{
int fd, count;
char ch;
fd = open("google.txt",O_RDWR|O_CREAT);
write(fd,"s",1);
lseek(fd,0,SEEK_SET);
write(fd,"d",1);
lseek(fd,0,0);
read(fd,&ch,1);
printf("%cn",ch);
return 0;
}
a) d
b) s
c) sd
d) none of the mentioned

d) none of the mentioned
Explanation:
Because of "lseek" system call the character "s" is overwritten by character "d" in the file "google.txt".
Output:
[root@localhost google]# gcc -o san san.c
[root@localhost google]# ./san
d
[root@localhost google]#

16 :: Do you know what is the output of this program?

#include<stdio.h>
#include<stdlib.h>
#include<fcntl.h>

int main()
{
int fd;
char *buff;
buff = (char *)malloc(sizeof(char)*5);
fd = open("google.txt",O_RDWR|O_CREAT);
write(fd,"Linux",5);
read(fd,buff,5);
printf("%sn",buff);
}
a) it will print nothing
b) it will print the string "Linux"
c) segmentation fault
d) none of the mentioned

a) it will print nothing
Explanation:
We have to use "lseek" system call if we want to read the file from the beginning just after writing into it.
Output:
[root@localhost google]# gcc -o san san.c
[root@localhost google]# ls
san san.c
[root@localhost google]# ./san
[root@localhost google]# ls
san san.c google.txt
[root@localhost google]# vim google.txt
[root@localhost google]#

18 :: What is the output of this program?

#include<stdio.h>
#include<fcntl.h>

int main()
{
int fd, count;
fd = open("san.c",O_RDONLY);
count = write(fd,"Linux",5);
if(count != 5)
perror("write");
return 0;
}
a) it will write the string "Linux" in the beginning of source file "san.c"
b) it will write the string "Linux" in the end of the source file "san.c"
c) segmentation fault
d) none of the mentioned

d) none of the mentioned
Explanation:
This program will write nothing in the source file "san.c" because we are opening the file in read only mode.
Output:
[root@localhost google]# gcc -o san san.c
[root@localhost google]# ./san
write: Bad file descriptor
[root@localhost google]#

19 :: Do you know what is the output of this program?

#include<stdio.h>
#include<fcntl.h>

int main()
{
int fd, count;
fd = open("google.txt",O_WRONLY|O_CREAT);
count = write(fd,"Linux System Programming",5);
if(count != 5)
perror("write");
return 0;
}
a) it will create a file "google.txt" in the present working directory
b) it will write the string "Linux System Programming" in the file "google.txt"
c) both (a) and (b)
d) none of the mentioned

a) it will create a file "google.txt" in the present working directory
Explanation:
This program will write only "Linux" in the file "google.txt" because we are writing only 5 bytes with "write" system call.
Output:
[root@localhost google]# gcc -o san san.c
[root@localhost google]# ls
san san.c
[root@localhost google]# ./san
[root@localhost google]# ls
san san.c google.txt
[root@localhost google]# vim google.txt
[root@localhost google]#

20 :: Output of this program?

#include<stdio.h>
#include<fcntl.h>

int main()
{
pid_t fd;
char ch;
int count;
fd = open("san.c",O_RDONLY);
do{
count = read(fd,&ch,1);
printf("%c",ch);
}while(count);
return 0;
}
a) it will print nothing
b) it will print the source code of the source file "san.c"
c) segmentation fault
d) none of the mentioned

a) it will print nothing
Explanation:
none.
Output:
[root@localhost google]# gcc -o san san.c
[root@localhost google]# ./san
#include
#include
int main()
{
int fd, count;
char ch;
fd = open("san.c",O_RDONLY);
do{
count = read(fd,&ch,1);
printf("%c",ch);
}while(count);
}

[root@localhost google]#

21 :: In the output of this program, the string "/* Linux */" will be added at the ____ of the source file.

#include<stdio.h>
#include<stdlib.h>
#include<fcntl.h>

int main()
{
int fd;
fd = open("san.c",O_RDWR|O_APPEND);
write(fd,"/* Linux */",11);
return 0;
}
a) end
b) beginning
c) second line
d) third line

a) end
Explanation:
The write system call writes at the end of the file because the file is opened with O_APPEND flag.
Output:
[root@localhost google]# gcc -o san san.c
[root@localhost google]# ./san
[root@localhost google]# vim san.c
[root@localhost google]#

25 :: What are your basic skills?

Programming, browsing. and video games.