Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 4 out of 106 pages
Exam (elaborations)

WGU C952 OA EXAM / WGU C952 COMPUTER ARCHITECTURE EXAM 300 ACTUAL QUESTIONS AND CORRECT ANSWERS WITH RATIONALE LATEST UPDATE ALREADY GRADED A+ ASSURED PASS

Document preview thumbnail
Preview 4 out of 106 pages

Ace the WGU C952 Computer Architecture Objective Assessment with this comprehensive collection of 300 actual exam-style questions featuring verified correct answers and detailed, exam-focused rationales based on the Computer Organization and Design textbook and course competencies. Organized into 50 essential sections covering fundamentals of computer architecture (von Neumann model, Moore's Law, Amdahl's Law, Eight Great Ideas, processor components), performance metrics (CPU Time, CPI, MIPS, response time vs throughput), instruction set architecture (LEGv8/ARM assembly, R-format/I-format/J-format, registers, addressing modes, RISC vs CISC), computer arithmetic (two's complement, IEEE 754, floating-point, overflow, sign extension), memory hierarchy and cache (SRAM vs DRAM, temporal/spatial locality, cache hits/misses, fully associative, set-associative, direct-mapped, cache replacement policies, write policies), virtual memory (page tables, TLB, page faults, demand paging, segmentation), processor design and pipelining (five-stage pipeline, data hazards, control hazards, forwarding, branch prediction, Tomasulo's Algorithm, out-of-order execution, superscalar), storage and I/O (RAID levels, DMA, polling vs interrupts, bus architectures), parallelism and multiprocessors (data-level parallelism, task parallelism, SIMD, MIMD, Flynn's Taxonomy, SMP, cache coherence, MESI protocol, VLIW), power and energy efficiency (dynamic vs static power, DVFS, power gating), and advanced topics (virtualization, cloud computing, quantum computing, neuromorphic computing, SoC, ASIC, FPGA, embedded systems), this resource emphasizes high-yield topics including CPU performance calculations, assembly language programming, pipeline hazard resolution, cache design and analysis, virtual memory address translation, RAID configurations, and parallel programming models. Each question includes a comprehensive rationale reinforcing architectural principles, design trade-offs, and performance analysis competencies essential for exam success. Perfect for intensive review and mastery of computer architecture concepts required for the WGU C952 OA.

Content preview

WGU C952 OA EXAM / WGU C952 COMPUTER
ARCHITECTURE EXAM 300 ACTUAL QUESTIONS
AND CORRECT ANSWERS WITH RATIONALE
LATEST UPDATE ALREADY GRADED A+ ASSURED
PASS


This comprehensive question bank contains 300 unique, multiple-choice questions
specifically designed for the WGU C952 Computer Architecture Objective
Assessment. Based on the course competencies and the Computer Organization
and Design textbook, the questions are organized into 50 sections covering all
essential content including the von Neumann model, Moore's Law, Amdahl's Law,
instruction set architecture (LEGv8/ARM), pipelining and hazards, memory
hierarchy and cache, virtual memory, parallelism, processor design, I/O systems,
and computer arithmetic. Each question includes the correct answer and a detailed
rationale explaining the architectural concepts and principles. This resource is ideal
for self-assessment, targeted review, and exam preparation.

Section 1: Fundamentals of Computer Architecture

Question 1: What is the primary distinction between computer architecture and
computer organization?

A) Architecture and organization are synonymous terms in computer science
B) Architecture refers to attributes visible to the programmer; organization refers
to operational units implementing the architecture
C) Architecture refers to hardware implementation; organization refers to software
interfaces
D) Architecture is the physical design; organization is the logical design

Answer: B) Architecture refers to attributes visible to the programmer;
organization refers to operational units implementing the architecture

Rationale: Computer architecture is the abstract interface visible to the
programmer, including the instruction set, data types, and I/O mechanisms.
Computer organization concerns the operational units and their interconnections

,that implement the architectural specifications, including control signals and
memory technology.

Question 2: According to the von Neumann model, what are the four main
components of a computer system?

A) CPU, RAM, Hard Drive, Motherboard
B) Input/Output devices, Memory, Arithmetic Logic Unit, Control Unit
C) Processor, Cache, Bus, Power Supply
D) System Software, Application Software, Data, Users

Answer: B) Input/Output devices, Memory, Arithmetic Logic Unit, Control Unit

Rationale: The von Neumann model defines four essential components:
Input/Output devices for communication with the outside world, Memory for
storing data and instructions, the Arithmetic Logic Unit (ALU) for performing
calculations, and the Control Unit for coordinating operations.

Question 3: What does Moore's Law state about integrated circuits?

A) The speed of processors doubles every 18 months
B) The number of transistors on integrated circuits doubles approximately every
two years
C) The cost of computers halves every year
D) Memory capacity increases by 50% annually

Answer: B) The number of transistors on integrated circuits doubles approximately
every two years

Rationale: Moore's Law is the observation that the number of transistors on
integrated circuits doubles approximately every two years, driving exponential
growth in computing performance and enabling multicore processors and complex
memory hierarchies.

Question 4: Which of the following is one of the Eight Great Ideas in computer
architecture?

A) Design for maximum complexity
B) Make the common case fast
C) Prioritize hardware over software

,D) Eliminate all redundancy

Answer: B) Make the common case fast

Rationale: The Eight Great Ideas in computer architecture include: Design for
Moore's Law, Use abstraction, Make the common case fast, Performance via
parallelism, Performance via pipelining, Performance via prediction, Hierarchy of
memories, and Dependability via redundancy.

Question 5: What does Amdahl's Law quantify?

A) The maximum number of transistors on a chip
B) The theoretical speedup in task execution when only part of the system is
improved
C) The minimum power consumption of a processor
D) The optimal cache size for a given workload

Answer: B) The theoretical speedup in task execution when only part of the system
is improved

Rationale: Amdahl's Law quantifies the theoretical speedup in latency of task
execution under fixed workload when only part of the system is improved. It
demonstrates that performance improvement is limited by the fraction of the task
that cannot be improved.

Question 6: Which of the following is NOT one of the five classic components of a
computer?

A) Input
B) Output
C) Memory
D) System Software

Answer: D) System Software

Rationale: The five classic components of a computer are Input, Output, Memory,
Datapath, and Control. System software is not a hardware component but rather
software that manages hardware resources and provides a platform for
applications.

, Question 7: What is the primary function of the Control Unit in a processor?

A) Performs arithmetic and logical operations
B) Stores the address of the next instruction
C) Decodes instructions and generates control signals for the datapath
D) Holds temporary data during ALU operations

Answer: C) Decodes instructions and generates control signals for the datapath

Rationale: The Control Unit acts like a conductor, reading the instruction (opcode),
decoding it, and sending out signals (e.g., RegWrite, MemRead, ALUop) to direct
the datapath, memory, and ALU on what to do.

Question 8: What is a wafer in semiconductor manufacturing?

A) The plastic package surrounding the CPU
B) The thin slice of silicon used to fabricate multiple chips
C) The metal heat spreader on top of the CPU
D) The conductive layer connecting transistors

Answer: B) The thin slice of silicon used to fabricate multiple chips

Rationale: A silicon ingot is sliced into thin wafers, and chips (dies) are printed
onto these wafers through photolithography. Each wafer contains hundreds or
thousands of individual chips.

Question 9: Which of the following is an example of non-volatile memory?

A) Register file
B) L1 Cache
C) Flash memory
D) DRAM

Answer: C) Flash memory

Rationale: Non-volatile memory retains data when power is turned off. Flash
memory, used in SSDs and USB drives, is non-volatile. Registers, Cache (SRAM),
and Main Memory (DRAM) lose their contents on power loss.

Question 10: What is the Instruction Set Architecture (ISA)?

Document information

Uploaded on
August 9, 2026
Number of pages
106
Written in
2026/2027
Type
Exam (elaborations)
Contains
Questions & answers
$21.99

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
PrepPulse
4.0
(7)
Sold
44
Followers
3
Items
1483
Last sold
13 hours ago



Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions