what does a process mean?
Answers were Sorted based on User's Feedback
Answer / madhu
Process is an instance of a program under execution.
Regards,
Madhu
| Is This Answer Correct ? | 6 Yes | 0 No |
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 |
Answer / saroj kumar rout (tcs)
A process is an executing program identified by a unique
PID (process identifier). To see information about your
processes, with their associated PID and status, type
% ps
A process may be in the foreground, in the background, or
be suspended. In general the shell does not return the UNIX
prompt until the current process has finished executing.
Some processes take a long time to run and hold up the
terminal. Backgrounding a long process has the effect that
the UNIX prompt is returned immediately, and other tasks
can be carried out while the original process continues
executing.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / mahesh
Process is nothing but currently running set of
instructions.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / rock
Whenever a program is executed it will take some time to
complete the job and the time between starting and ending is
known as process.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / purna
A program in the main memory is nothing but a process
| Is This Answer Correct ? | 0 Yes | 2 No |
what are wild cards?
Write a grep (or grep) command that selects the lines from a file that have exactly three characters.
Who command in unix operating system?
What is FIND, GREP and SED ? Could you please give me the difference between all the three? Where we use this commnands?
how to find largest file?
14 Answers HCL, Microsoft, Thomson Reuters,
Which command can you use to find the currently running process in unix server?
What command is used to replace the existing string with some other?
How to install scsi driver in unix? give me explanation clearly?
The command grep first second third /usr/you/myfile a) prints lines containing the words first, second or third from the file /usr/you/myfile b) searches for lines containing the pattern first in the files second, third, and /usr/you/myfile and prints them c) searches the files /usr/you/myfiel and third for lines containing the words first or second and prints them d) replaces the word first with the word second in the files third and /usr/you/myfile e) None of the above
What is the use of cut command in unix?
Give a regular expression that finds two things, try to come up with regular expressions that find each individually using "egrep" command?
How do I run a whois command?