What is the difference between a 'thread' and a 'process'?
Answer Posted / satchi
A process is a collection of virtual memory space, code,
data, and system resources. A thread is code that is to be
serially executed within a process. A processor executes
threads, not processes, so each application has at least
one process, and a process always has at least one thread
of execution, known as the primary thread
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the zombie processes?
How does shell scripting work?
What is a batch file used for?
What is the fastest scripting language?
How to get script name inside a script?
Explain about login shell?
Can we run shell script in windows?
Which scripting language is best for automation?
Write a command sequence to find all the files modified in less than 2 days and print the record count of each.
What is a shell script in windows?
write a shell script to emulate the Id command of PRIMOS which lists files and directories. It list files first with a header FILES and then directories with a header DIRECTORIES. This command has several options. The main ones are. -file select files only -dir select directories only -reverse sort in reverse order -no_header put no header on the output -brief output the header only -size display the size of each file -help display Id´s syntax and options.
Explore about environment variables?
i have 2 tables 4 colums table 1 respective values a1 6, a2 8,a3 9,a4 14 & table 2 respective values a1 6, a2 8, a3 9, a4 12. if compare 2 tables 3 colums values same then 4th column values 1)Qes diff >5 then (5 * diff value ) 2)Qes diff <5 the 5 3)Qes diff 5 then 5 print respective values..
What is echo $shell?
Suppose you execute a command using exec, what will be the status of your current process in the shell?