what does a process mean?

Answer Posted / jagadeeb choudhury

Program under execution is called a process.
Each and every process is all ways identified by a number
called process id or PID.

and

Program not under execution is called a File.


Thanks,
Jagadeeb@gmail.com

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the comma to show the space allocation of files?

564


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:

1773


How do I run a whois command?

613


How does the system know where one command ends and another begins?

1586


Differentiate cmp command from diff command.

599






Is it inbetween or in between?

592


What is the use of find command in unix?

592


How do you grep a case insensitive?

552


What does awk stand for?

621


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

593


What are filter commands in unix?

559


What is the difference between awk and grep?

567


Differentiate cat command from more command.

590


What are the general commands in using unix os for a beginner?

585


What is the use of tee command?

580