Escrito por estudiantes que aprobaron Inmediatamente disponible después del pago Leer en línea o como PDF ¿Documento equivocado? Cámbialo gratis 4,6 TrustPilot
logo-home
Examen

WGU C952 ACTUAL EXAM STUDY GUIDE WITH QUESTIONS AND CORRECT VERIFIED ANSWERS GRADED A+ || 100% GUARANTEED PASS NEWEST VERSION

Puntuación
-
Vendido
-
Páginas
36
Grado
A+
Subido en
18-05-2026
Escrito en
2025/2026

WGU C952 ACTUAL EXAM STUDY GUIDE WITH QUESTIONS AND CORRECT VERIFIED ANSWERS GRADED A+ || 100% GUARANTEED PASS NEWEST VERSION Load-use data hazard: - Answer ️A specific form of data hazard in which the data being loaded by a load instruction has not yet become available when it is needed by another instruction. control hazard (branch hazard) - Answer ️When the proper instruction cannot execute in the proper pipeline clock cycle because the instruction that was fetched is not the one that is needed; that is, the flow of instruction addresses is not what the pipeline expected. Branch prediction - Answer ️A method of resolving a branch hazard that assumes a given outcome for the branch and proceeds from that assumption rather than waiting to ascertain the actual outcome. five-stage pipeline - Answer ️five instructions will be in execution during any single clock cycle 1. IF - instruction fetch 2. ID - instruction decode and register file read 3. EX - execution or address calculation 4. MEM - data memory access 5. WB - write back Instruction Fetch (IF) - Answer ️Move instruction from memory to the control unit Instruction decode (ID) - Answer ️Pull apart the instruction, set up the operation in the ALU, and compute the source and destination operand addresses Execute (EX) - Answer ️ALU is used to perform the instruction's operation or to compute an address, or an adder is used for branches; both are depicted using an ALU symbol. Data memory access (MEM) - Answer ️the data memory (DM) may be read (for a load instruction) or written (for a store instruction). For load, the right half is shaded, indicating read. (For store, the left half would be shaded). Write back (WB) - Answer ️the register file (Reg) may be written by certain instructions (like R-type instructions). The left half is shaded to indicate write (vs. read). Although two Reg icons appear in the stylized depictions, only one register file exists. Branch prediction buffer - Answer ️Also called branch history table. A small memory that is indexed by the lower portion of the address of the branch instruction and that contains one or more bits indicating whether the branch was recently taken or not. Dynamic branch prediction - Answer ️prediction of branches at runtime using runtime information Branch target buffer - Answer ️A structure that caches the destination PC or destination instruction for a branch. It is usually organized as a cache with tags, making it more costly than a simple prediction buffer. Correlating predictor - Answer ️A branch predictor that combines local behavior of a particular branch and global information about the behavior of some recent number of executed branches. Tournament branch predictor - Answer ️A branch predictor with multiple predictions for each branch and a selection mechanism that chooses which predictor to enable for a given branch. Microarchitecture - Answer ️The organization of the processor, including the major functional units, their interconnection, and control. Architectural registers - Answer ️The instruction set of visible registers of a processor; for example, in MIPS, these are the 32 integer and 16 floating point registers Three Cs model - Answer ️A cache model in which all cache misses are classified into one of three categories: compulsory misses, capacity misses, and conflict misses. compulsory miss (cold-start miss) - Answer ️a cache miss caused by the first access to a block that has never been in the cache Both large block sizes and prefetching may reduce compulsory misses capacity miss - Answer ️A cache miss that occurs because the cache, even with full associativity, cannot contain all the blocks needed to satisfy the request. Increase cache size may decrease capacity misses and increase access time conflict miss (collision miss) - Answer ️A cache miss that occurs in a set-associative or direct-mapped cache when multiple blocks compete for the same set and that are eliminated in a fully associative cache of the same size Increases associativity may decrease miss rate and increase access time. Finite-state machine - Answer ️A sequential logic function consisting of a set of inputs and outputs, a next-state function that maps the current state and the inputs to a new state, and an output function that maps the current state and possibly the inputs to a set of asserted outputs. Next-state machine - Answer ️A combinational function that, given the inputs and the current state, determines the next state of a finite-state machine. cache ready signal - Answer ️set in the Compare Tag state if requested read or write is a hit memory ready signal - Answer ️set in the Write Back state when a block is written to memory and in the Allocate state when a memory read is completed. Consistency - Answer ️ensure that writes to a location by different processors are seen in the same order by all processors. It is defines when written values will be returned by a read Coherence - Answer ️ensures that a read of a data item returns the most recently written value of that data item. It defines what values can be returned by a read Write serialization - Answer ️Method that ensures writes to a location are seen in the same order by all processors. Maintaining the order of writes to a given location ensures that all processors sharing memory read the correct data.

Mostrar más Leer menos
Institución
WGU C952 \\\\
Grado
WGU C952 \\\\

Vista previa del contenido

WGU C952 ACTUAL EXAM STUDY GUIDE
WITH QUESTIONS AND CORRECT
VERIFIED ANSWERS GRADED A+ || 100%
GUARANTEED PASS NEWEST VERSION
Load-use data hazard: - Answer A specific form of data hazard in which the
data being loaded by a load instruction has not yet become available when it is
needed by another instruction.


control hazard (branch hazard) - Answer When the proper instruction cannot
execute in the proper pipeline clock cycle because the instruction that was fetched
is not the one that is needed; that is, the flow of instruction addresses is not what
the pipeline expected.


Branch prediction - Answer A method of resolving a branch hazard that
assumes a given outcome for the branch and proceeds from that assumption rather
than waiting to ascertain the actual outcome.


five-stage pipeline - Answer five instructions will be in execution during any
single clock cycle


1. IF - instruction fetch
2. ID - instruction decode and register file read
3. EX - execution or address calculation
4. MEM - data memory access
5. WB - write back

,Instruction Fetch (IF) - Answer Move instruction from memory to the control
unit


Instruction decode (ID) - Answer Pull apart the instruction, set up the operation
in the ALU, and compute the source and destination operand addresses


Execute (EX) - Answer ALU is used to perform the instruction's operation or to
compute an address, or an adder is used for branches; both are depicted using an
ALU symbol.


Data memory access (MEM) - Answer the data memory (DM) may be read (for
a load instruction) or written (for a store instruction). For load, the right half is
shaded, indicating read. (For store, the left half would be shaded).


Write back (WB) - Answer the register file (Reg) may be written by certain
instructions (like R-type instructions). The left half is shaded to indicate write (vs.
read). Although two Reg icons appear in the stylized depictions, only one register
file exists.


Branch prediction buffer - Answer Also called branch history table. A small
memory that is indexed by the lower portion of the address of the branch
instruction and that contains one or more bits indicating whether the branch was
recently taken or not.


Dynamic branch prediction - Answer prediction of branches at runtime using
runtime information

,Branch target buffer - Answer A structure that caches the destination PC or
destination instruction for a branch. It is usually organized as a cache with tags,
making it more costly than a simple prediction buffer.


Correlating predictor - Answer A branch predictor that combines local behavior
of a particular branch and global information about the behavior of some recent
number of executed branches.


Tournament branch predictor - Answer A branch predictor with multiple
predictions for each branch and a selection mechanism that chooses which
predictor to enable for a given branch.


Microarchitecture - Answer The organization of the processor, including the
major functional units, their interconnection, and control.


Architectural registers - Answer The instruction set of visible registers of a
processor; for example, in MIPS, these are the 32 integer and 16 floating point
registers


Three Cs model - Answer A cache model in which all cache misses are
classified into one of three categories: compulsory misses, capacity misses, and
conflict misses.


compulsory miss (cold-start miss) - Answer a cache miss caused by the first
access to a block that has never been in the cache


Both large block sizes and prefetching may reduce compulsory misses

, capacity miss - Answer A cache miss that occurs because the cache, even with
full associativity, cannot contain all the blocks needed to satisfy the request.


Increase cache size may decrease capacity misses and increase access time


conflict miss (collision miss) - Answer A cache miss that occurs in a set-
associative or direct-mapped cache when multiple blocks compete for the same set
and that are eliminated in a fully associative cache of the same size


Increases associativity may decrease miss rate and increase access time.


Finite-state machine - Answer A sequential logic function consisting of a set of
inputs and outputs, a next-state function that maps the current state and the inputs
to a new state, and an output function that maps the current state and possibly the
inputs to a set of asserted outputs.


Next-state machine - Answer A combinational function that, given the inputs
and the current state, determines the next state of a finite-state machine.


cache ready signal - Answer set in the Compare Tag state if requested read or
write is a hit


memory ready signal - Answer set in the Write Back state when a block is
written to memory and in the Allocate state when a memory read is completed.


Consistency - Answer ensure that writes to a location by different processors
are seen in the same order by all processors. It is defines when written values will
be returned by a read

Escuela, estudio y materia

Institución
WGU C952 \\\\
Grado
WGU C952 \\\\

Información del documento

Subido en
18 de mayo de 2026
Número de páginas
36
Escrito en
2025/2026
Tipo
Examen
Contiene
Preguntas y respuestas

Temas

$11.49
Accede al documento completo:

¿Documento equivocado? Cámbialo gratis Dentro de los 14 días posteriores a la compra y antes de descargarlo, puedes elegir otro documento. Puedes gastar el importe de nuevo.
Escrito por estudiantes que aprobaron
Inmediatamente disponible después del pago
Leer en línea o como PDF

Conoce al vendedor
Seller avatar
TutorEric

Conoce al vendedor

Seller avatar
TutorEric Teachme2-tutor
Seguir Necesitas iniciar sesión para seguir a otros usuarios o asignaturas
Vendido
1
Miembro desde
1 año
Número de seguidores
0
Documentos
107
Última venta
10 meses hace
ACADEMIC HUB

As a professional tutor, I provide high-quality academic support in Nursing, Psychology, Business, Sciences, and Mathematics. We provide scholarly assignments, research support, revision materials, and exam preparation, helping students achieve excellent grades through accurate, timely, and standards-based academic assistance.

0.0

0 reseñas

5
0
4
0
3
0
2
0
1
0

Por qué los estudiantes eligen Stuvia

Creado por compañeros estudiantes, verificado por reseñas

Calidad en la que puedes confiar: escrito por estudiantes que aprobaron y evaluado por otros que han usado estos resúmenes.

¿No estás satisfecho? Elige otro documento

¡No te preocupes! Puedes elegir directamente otro documento que se ajuste mejor a lo que buscas.

Paga como quieras, empieza a estudiar al instante

Sin suscripción, sin compromisos. Paga como estés acostumbrado con tarjeta de crédito y descarga tu documento PDF inmediatamente.

Student with book image

“Comprado, descargado y aprobado. Así de fácil puede ser.”

Alisha Student

Preguntas frecuentes