In: Computer Science
What is the correct answer? Kindly explain
Support Processor environment is one where:
A) A computer uses network connections to distribute processing tasks to other CPUs on the network
B) A CPU environment where many complex but routine operations are hardwired into it
C) An environment where a single CPU has other single function processors to delegate specific tasks in
Parallel Processing Involves:
A) A computer that is linked to the CPUs of many other computers
B) A computer with many CPUs each processing a different instruction at any point in time
C) A Computer with a CPU that can share time between multiple processor
Part 1
(C) An environment where a single CPU has other single function processors to delegate specific tasks in
processors those are capable of being used in a multiprocessing system. The whole task of multiprocessing is managed by the operating system, which allocates different tasks to be performed by the various processors in the system.
Applications designed for the use in multiprocessing are said to be threaded, which means that they are broken into smaller routines that can be run independently. This allows the operating system to let these threads run on more than one processor simultaneously, which is multiprocessing that results in improved performance.
Part 2
(B) A computer with many CPUs each processing a different instruction at any point in time
Parallel processing involves taking a large task, dividing it into several smaller tasks, and then working on each of those smaller tasks simultaneously. The goal of this divide-and-conquer approach is to complete the larger task in less time than it would have taken to do it in one large chunk.