Question:medium

Von Neumann computers belong to which one of the following classes of computers?

Show Hint

Most traditional sequential computers fall under the SISD category in Flynn’s classification.
Updated On: Jul 6, 2026
  • SIMD
  • MIMD
  • MISD
  • SISD
Show Solution

The Correct Option is D

Approach Solution - 1

Flynn's classification looks at two things: how many instructions are being executed at once, and how many pieces of data they act on at once.
A basic Von Neumann computer fetches, decodes, and executes exactly one instruction at a time, and that instruction works on exactly one data value at a time, there's no parallel instruction stream and no parallel data stream.
That "one and one" combination is, by definition, SISD, single instruction stream, single data stream.
So the correct answer is SISD.
Was this answer helpful?
0
Show Solution

Approach Solution -2

Another way to confirm this is to picture a real-world system that represents each class, and check whether a plain Von Neumann machine resembles it:

  1. SIMD: Picture a graphics card applying the same brightness adjustment to a million pixels in one instruction cycle. A Von Neumann CPU handles instructions one at a time on individual values, nothing like this bulk parallel behavior.
  2. MIMD: Picture a multi-core server where each core runs a totally different program on different data. A single Von Neumann processor is just one such core, not the whole multi-core system.
  3. MISD: Picture several different processing units all analyzing the exact same sensor reading for redundancy checking. Von Neumann machines have only one processing unit and one instruction stream, not several.
  4. SISD: Picture a single calculator doing one operation on one number, then the next operation on the next number, strictly in sequence. This is precisely the behavior of a classic Von Neumann CPU.

Of these four pictures, only the last matches how a plain Von Neumann processor actually behaves.

Therefore, the correct answer is SISD.

Was this answer helpful?
0

Top Questions on Computer Organization and Architecture