whether the mulitasking and multiprocessing are same or
not.
Answer Posted / santhosh kumar. r
Ya, both are different. MultiTasking is rinning different
tasks on the same process, Ex:- Opening different tabs on
Mozilla Firefox, here a process with Mozilla.exe is the
single process in running state and different tabs opened
are tasks.
But Multiprocessing is running different
processes at the same time,some what like running
mozilla,iexplorer and mediaplayer. Here each process
occupies different memory and terminate seperately.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Explain me what are the different types of system involved in embedded system?
Explain me what is endianness of a system and how do different systems communicate with each other?
What is the use of volatile keyword?
What are the languages used in embedded system?
A=7; b=8; x=a++-b; printf(ā%dā, x ); what does this code give as output?
Explain the properties of a object oriented programming language.
Infinite loops often arise in embedded systems. How does you code an infinite loop in c?
Can we put breakpoint inside isr?
What is the difference between unit test and integration test?
How do you reduce interrupt latency?
what is meant by a forward reference in c?
Explain the concept of convention over configuration, and talk about an example of convention over configuration you have seen in the wild.
Explain me how does the interrupt architecture works?
What are the 4 types of inheritance relationship?
Tell me whether we can use semaphore or mutex or spinlock in interrupt context in linux kernel?