edited by
1,288 views

2 Answers

5 votes
5 votes

Option C)  b c a

Based on Flynn’s classification

MIMD (multiple instruction stream, multiple data stream). This includes machines with several processing units in which multiple instructions can be applied to different data simultaneously. MIMD machines are the most complex, but they also hold the greatest promise for efficiency gains accomplished through concurrent processing. Here concurrency implies that not only are multiple processors operating simultaneously, but multiple programs (processes) are being executed in the same time frame, concurrent to each other, as well

SIMD (single instruction stream, multiple data stream). This implies that a single instruction is applied to different data simultaneously. In machines of this type, many separate processing units are invoked by a single control unit.

SISD (single instruction stream, single data stream). This is the von Neumann concept of serial computer design in which only one instruction is executed at any time.

http://www2.cs.siu.edu/~cs401/Textbook/ch1.pdf

1 votes
1 votes
Ans : c      

MIMD>SIMD>SISD
Answer:

Related questions

1 votes
1 votes
2 answers
3