Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Unix Commands Interview Questions
Questions Answers Views Company eMail

Is it inbetween or in between?

1008

Why is shebang used?

1062

What is the difference between awk and grep?

1159

How do I use nslookup?

1055

What command is used to check the current users?

1078

Which command is used to create a directory?

1103

Which command will print your home directory on screen?

1042

What is the use of cut command in unix?

1305

What does the md command do?

1081

What is rmdir command?

1051

What is used to type command?

1015

Which command is used to copy files?

1128

What is Unix, and how does it differ from other operating systems?

2 950

What is the Unix file system hierarchy?

2 1025

What is a shell in Unix? Name some common Unix shells.

2 1037


Post New Unix Commands Questions

Un-Answered Questions { Unix Commands }

What is the use of egrep command in unix?

1135


Which command is used to delete all files in the current directory and all its sub-directories?

1217


What are grep patterns?

1032


What is grep r?

1049


How is the command '$cat file2 ' different from '$cat >file2 and >> redirection operators ?

1268


Who command in unix operating system?

1096


What is awk command used for?

1146


What is the comma to display different lines that are found when compare two files?

1099


What do chmod command do?

1149


What does the “echo” command do?

1105


Which command is used to restrict incoming messages?

1050


How does pipe () work?

1046


How do I run a whois command?

1112


How to display no of records in oracle using unix command?

1123


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include # include int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

2214