Alisher Kassymov
Quiz por , criado more than 1 year ago

PC Arc Quiz sobre PC_architecture_Final_Preparation, criado por Alisher Kassymov em 22-05-2018.

607
18
0
Alisher Kassymov
Criado por Alisher Kassymov aproximadamente 6 anos atrás
Fechar

PC_architecture_Final_Preparation

Questão 1 de 189

1

What is a Latency:

Selecione uma das seguintes:

  • is amount of data that can be in flight at the same time (Little’s Law)

  • is the number of accesses per unit time – If m instructions are loads/stores, 1 + m memory accesses
    per instruction, CPI = 1 requires at least 1 + m memory accesses per cycle

  • is time for a single access – Main memory latency is usually >> than processor cycle time

Explicação

Questão 2 de 189

1

What occurs at Intruction fetches when we speak about Common And Predictable Memory
Reference Patterns?

Selecione uma das seguintes:

  • n loop iterations

  • subroutine call

  • vector access

Explicação

Questão 3 de 189

1

What occurs at Stack access when we speak about Common And Predictable Memory
Reference Patterns?

Selecione uma das seguintes:

  • n loop iterations

  • subroutine call

  • vector access

Explicação

Questão 4 de 189

1

What occurs at Data access when we speak about Common And Predictable Memory
Reference Patterns?

Selecione uma das seguintes:

  • subroutine call

  • n loop iterations

  • vector access

Explicação

Questão 5 de 189

1

Cache HIT:

Selecione uma das seguintes:

  • No Write Allocate, Write Allocate

  • Write Through, Write Back

Explicação

Questão 6 de 189

1

Cache MISS:

Selecione uma das seguintes:

  • No Write Allocate, Write Allocate

  • Write Through, Write Back

Explicação

Questão 7 de 189

1

Average Memory Access Time is equal:

Selecione uma das seguintes:

  • Hit Time * ( Miss Rate + Miss Penalty )

  • Hit Time - ( Miss Rate + Miss Penalty )

  • Hit Time / ( Miss Rate - Miss Penalty )

  • Hit Time + ( Miss Rate * Miss Penalty )

Explicação

Questão 8 de 189

1

Compulsory -

Selecione uma das seguintes:

  • cache is too small to hold all data needed by program, occur even under perfect replacement policy (loop over 5 cache
    lines)

  • first-reference to a block, occur even with infinite cache

  • misses that occur because of collisions due to less than full associativity (loop over 3 cache lines)

Explicação

Questão 9 de 189

1

Capacity -

Selecione uma das seguintes:

  • cache is too small to hold all data needed by program, occur even under perfect replacement policy (loop over 5 cache
    lines)

  • misses that occur because of collisions due to less than full associativity (loop over 3 cache lines)

  • first-reference to a block, occur even with infinite cache

Explicação

Questão 10 de 189

1

Conflict -

Selecione uma das seguintes:

  • first-reference to a block, occur even with infinite cache

  • misses that occur because of collisions due to less than full associativity (loop over 3 cache lines)

  • cache is too small to hold all data needed by program, occur even under perfect replacement policy (loop over 5 cache
    lines)

Explicação

Questão 11 de 189

1

Algorithm for Cache HIT:

Selecione uma das seguintes:

  • Processor issues load request to cache -> Replace victim block in cache with new block -> return copy of data from
    cache

  • Processor issues load request to cache -> Read block of data from main memory -> return copy of data from cache

  • Processor issues load request to cache -> Compare request address to cache tags and see if there is a match -> return
    copy of data from cache

Explicação

Questão 12 de 189

1

Algorithm for Cache MISS:

Selecione uma das seguintes:

  • Processor issues load request to cache -> Compare request address to cache tags and see if there is a match -> Read
    block of data from main memory -> Replace victim block in cache with new block -> return copy of data from cache

  • Processor issues load request to cache -> Read block of data from main memory -> return copy of data from cache

  • Processor issues load request to cache -> Replace victim block in cache with new block -> return copy of data from
    cache

Explicação

Questão 13 de 189

1

The formula of “Iron Law” of Processor Performance:

Selecione uma das seguintes:

  • time/program = instruction/program * cycles/instruction * time/cycle

  • time/program = instruction/program * cycles/instruction + time/cycle

  • time/program = instruction/program + cycles/instruction * time/cycle

Explicação

Questão 14 de 189

1

Structural Hazard:

Selecione uma das seguintes:

  • An instruction depends on a data value produced by an earlier instruction

  • An instruction in the pipeline needs a resource being used by another instruction in the pipeline

  • Whether or not an instruction should be executed depends on a control decision made by an earlier instruction

Explicação

Questão 15 de 189

1

Data Hazard:

Selecione uma das seguintes:

  • Whether or not an instruction should be executed depends on a control decision made by an earlier instruction

  • An instruction in the pipeline needs a resource being used by another instruction in the pipeline

  • An instruction depends on a data value produced by an earlier instruction

Explicação

Questão 16 de 189

1

Control Hazard:

Selecione uma das seguintes:

  • Whether or not an instruction should be executed depends on a control decision made by an earlier instruction

  • An instruction depends on a data value produced by an earlier instruction

  • An instruction in the pipeline needs a resource being used by another instruction in the pipeline

Explicação

Questão 17 de 189

1

What is a Bandwidth:

Selecione uma das seguintes:

  • a is the number of accesses per unit time – If m instructions are loads/stores, 1 + m memory accesses per instruction, CPI
    = 1 requires at least 1 + m memory accesses per cycle

  • is time for a single access – Main memory latency is usually >> than processor cycle time

  • is amount of data that can be in flight at the same time (Little’s Law)

Explicação

Questão 18 de 189

1

What is a Bandwidth-Delay Product:

Selecione uma das seguintes:

  • is the number of accesses per unit time – If m instructions are loads/stores, 1 + m memory accesses per instruction, CPI
    = 1 requires at least 1 + m memory accesses per cycle

  • is time for a single access – Main memory latency is usually >> than processor cycle time

  • is amount of data that can be in flight at the same time (Little’s Law)

Explicação

Questão 19 de 189

1

What is Computer Architecture?

Selecione uma das seguintes:

  • the programs used to direct the operation of a computer, as well as documentation giving instructions on how to use
    them

  • is the design of the abstraction/implementation layers that allow us to execute information processing applications
    efficiently using manufacturing technologies

  • is a group of computer systems and other computing hardware devices that are linked together through communication
    channels to facilitate communication and resource-sharing among a wide range of users

Explicação

Questão 20 de 189

1

Least Recently Used (LRU):

Selecione uma das seguintes:

  • FIFO with exception for most recently used block(s)

  • Used in highly associative caches

  • cache state must be updated on every access

Explicação

Questão 21 de 189

1

Cache Hit -

Selecione uma das seguintes:

  • Write Through – write both cache and memory, generally higher traffic but simpler to design

  • write cache only, memory is written when evicted, dirty bit per block avoids unnecessary write backs, more complicated

  • No Write Allocate – only write to main memory

Explicação

Questão 22 de 189

1

Reduce Miss Rate: Large Cache Size. Empirical Rule of Thumb:

Selecione uma das seguintes:

  • None of them

  • If cache size is doubled, miss rate usually drops by about √2

  • Direct-mapped cache of size N has about the same miss rate as a two-way set- associative cache of size N/2

Explicação

Questão 23 de 189

1

Reduce Miss Rate: High Associativity. Empirical Rule of Thumb:

Selecione uma das seguintes:

  • Direct-mapped cache of size N has about the same miss rate as a two-way set- associative cache of size N/2

  • None of them

  • If cache size is doubled, miss rate usually drops by about √2

Explicação

Questão 24 de 189

1

Exploit temporal locality:

Selecione uma das seguintes:

  • by remembering the contents of recently accessed locations

  • by fetching blocks of data around recently accessed locations

  • None of them

Explicação

Questão 25 de 189

1

Exploit spatial locality:

Selecione uma das seguintes:

  • None of them

  • by remembering the contents of recently accessed locations

  • by fetching blocks of data around recently accessed locations

Explicação

Questão 26 de 189

1

Structural Hazard:

Selecione uma das seguintes:

  • An instruction depends on a data value produced by an earlier instruction

  • An instruction in the pipeline needs a resource being used by another instruction in the pipeline

  • Whether or not an instruction should be executed depends on a control decision made by an earlier instruction

Explicação

Questão 27 de 189

1

Data Hazard:

Selecione uma das seguintes:

  • An instruction in the pipeline needs a resource being used by another instruction in the pipeline

  • Whether or not an instruction should be executed depends on a control decision made by an earlier instruction

  • An instruction depends on a data value produced by an earlier instruction

Explicação

Questão 28 de 189

1

What is the access time?

Selecione uma das seguintes:

  • Describes the technology inside the memory chips and those innovative, internal organizations

  • Time between when a read is requested and when the desired word arrives

  • The minimum time between requests to memory.

  • None of them

Explicação

Questão 29 de 189

1

What is the cycle time?

Selecione uma das seguintes:

  • The minimum time between requests to memory

  • Time between when a read is requested and when the desired word arrives

  • The maximum time between requests to memory.

  • None of them

Explicação

Questão 30 de 189

1

What does SRAM stands for?

Selecione uma das seguintes:

  • System Random Access memory

  • Static Random Access memory

  • Short Random Accessmemory

  • None of them

Explicação

Questão 31 de 189

1

What does DRAM stands for?

Selecione uma das seguintes:

  • Dataram Random Access memory

  • Dual Random Access memory

  • Dynamic Random Access memory

Explicação

Questão 32 de 189

1

What does DDR stands for?

Selecione uma das seguintes:

  • None of them

  • Double data reaction

  • Dual data rate

  • Double data rate

Explicação

Questão 33 de 189

1

What is kernel process?

Selecione uma das seguintes:

  • Provide at least two modes, indicating whether the running process is a user process or an
    operating system process

  • Provide a portion of the processor state that a user process can use but not write

  • Provide at least five modes, indicating whether the running process is a user process or an
    operating system process

  • None of them

Explicação

Questão 34 de 189

1

Which one is NOT concerning to pitfall?

Selecione uma das seguintes:

  • Implementing a virtual machine monitor on an instruction set architecture that wasn’t designed to
    be virtualizable

  • Simulating enough instructions to get accurate performance measures of the memory hierarchy

  • Predicting cache performance of one program from another

  • Over emphasizing memory bandwidth in DRAMs

Explicação

Questão 35 de 189

1

Which one is concerning to fallacy?

Selecione uma das seguintes:

  • Over emphasizing memory bandwidth in DRAMs

  • Implementing a virtual machine monitor on an instruction set architecture that wasn’t designed to
    be virtualizable

  • Predicting cache performance of one program from another

  • Simulating enough instructions to get accurate performance measures of the memory hierarchy

Explicação

Questão 36 de 189

1

If we talk about storage systems an interaction or transaction with a computer is
divided for first what is an “System response time” - ?:

Selecione uma das seguintes:

  • The time from the reception of the response until the user begins to enter the next command

  • The time between when the user enters the command and the complete response is displayed

  • The time for the user to enter the command

Explicação

Questão 37 de 189

1

If we talk about storage systems an interaction or transaction with a computer is
divided for first what is an “Think time” - ?:

Selecione uma das seguintes:

  • The time from the reception of the response until the user begins to enter the next command

  • The time between when the user enters the command and the complete response is displayed

  • The time for the user to enter the command

Explicação

Questão 38 de 189

1

Little’s Law and a series of definitions lead to several useful equations for “Time
server” - :

Selecione uma das seguintes:

  • Average time per task in the queue

  • Average time/task in the system, or the response time, which is the sum of Time queue and Time server

  • Average time to service a task; average service rate is 1/Time server traditionally represented
    by the symbol μ in many queuing texts

Explicação

Questão 39 de 189

1

Little’s Law and a series of definitions lead to several useful equations for “Time
queue” - :

Selecione uma das seguintes:

  • Average time to service a task; average service rate is 1/Time server traditionally
    represented by the symbol μ in many queuing texts

  • Average time per task in the queue

  • Average time/task in the system, or the response time, which is the sum of Time queue and Time server

Explicação

Questão 40 de 189

1

Little’s Law and a series of definitions lead to several useful equations for “Time
system” - :

Selecione uma das seguintes:

  • Average time/task in the system, or the response time, which is the sum of Time queue and Time server

  • Average time to service a task; average service rate is 1/Time server traditionally
    represented by the symbol μ in many queuing texts

  • Average time per task in the queue

Explicação

Questão 41 de 189

1

Little’s Law and a series of definitions lead to several useful equations for
“Length server” - :

Selecione uma das seguintes:

  • Average length of queue

  • Average number of tasks in service

Explicação

Questão 42 de 189

1

Little’s Law and a series of definitions lead to several useful equations for
“Length queue” -:

Selecione uma das seguintes:

  • Average length of queue

  • Average number of tasks in service

Explicação

Questão 43 de 189

1

How many issue queue used in Centralized Superscalar 2 and Exceptions?

Selecione uma das seguintes:

  • 4

  • 3

  • 2

  • 1

Explicação

Questão 44 de 189

1

How many issue queue used in Distributed Superscalar 2 and Exceptions:

Selecione uma das seguintes:

  • 4

  • 3

  • 1

  • 2

Explicação

Questão 45 de 189

1

How many instructions used in Distributed Superscalar 2 and Exceptions?

Selecione uma das seguintes:

  • 4

  • 3

  • 2

  • 1

Explicação

Questão 46 de 189

1

How many issue queue used in Centralized Superscalar 2 and Exceptions?

Selecione uma das seguintes:

  • 1

  • 2

  • 3

  • 4

Explicação

Questão 47 de 189

1

Which of the following formula is true about Issue Queue for “Instruction Ready”:

Selecione uma das seguintes:

  • Instruction Ready = (!Vsrc1 || !Psrc1)&&(!Vsrc0 || !Psrc0)&& no structural hazards

  • Instruction Ready = (!Vsrc0 || !Psrc1)&&(!Vsrc1 || !Psrc0)&& no structural hazards

  • Instruction Ready = (!Vsrc0 || !Psrc0)&&(!Vsrc1 || !Psrc1)&& no structural hazards

  • Instruction Ready = (!Vsrc1 || !Psrc1)&&(!Vsrc0 || !Psrc1)&& no structural hazards

Explicação

Questão 48 de 189

1

What is a ARF:

Selecione uma das seguintes:

  • Architectural Register File

  • Architecture Relocation File

  • Architecture Reload File

  • Architectural Read File

Explicação

Questão 49 de 189

1

What is a ROB?

Selecione uma das seguintes:

  • Read Only Buffer

  • Reorder Buffer

  • Reload Buffer

  • Recall Buffer

Explicação

Questão 50 de 189

1

What is a FSB?

Selecione uma das seguintes:

  • Finished Star Buffer

  • Finished Stall Buffer

  • Finished Store Buffer

  • Finished Stack Buffer

Explicação

Questão 51 de 189

1

What is a PRF?

Selecione uma das seguintes:

  • Pure Register File

  • Physical Register File

  • Pending Register File

  • Pipeline Register File

Explicação

Questão 52 de 189

1

What is a SB?

Selecione uma das seguintes:

  • Scalebit

  • Scaleboard

  • Scorebased

  • Scoreboard

Explicação

Questão 53 de 189

1

How many stages used in Superscalar (Pipeline)?

Selecione uma das seguintes:

  • 5

  • 4

  • 6

  • 7

Explicação

Questão 54 de 189

1

What is about Superscalar means “F-D-X-M-W”?

Selecione uma das seguintes:

  • Fetch, Decode, Instruct, Map, Write

  • Fetch, Decode, Execute, Memory, Writeback

  • Fetch, Decode, Excite, Memory, Write

  • Fetch, Decode, Except, Map, Writeback

Explicação

Questão 55 de 189

1

Speculating on Exceptions “Prediction mechanism” is -

Selecione uma das seguintes:

  • None of them

  • Only write architectural state at commit point, so can throw away partially executed instructions after
    exception

  • Exceptions are rare, so simply predicting no exceptions is very accurate

  • Exceptions detected at end of instruction execution pipeline, special hardware for various exception types

Explicação

Questão 56 de 189

1

Speculating on Exceptions “Check prediction mechanism” is -

Selecione uma das seguintes:

  • The way in which an object is accessed by a subject

  • Exceptions detected at end of instruction execution pipeline, special hardware for various exception types

  • Exceptions are rare, so simply predicting no exceptions is very accurate

  • None of them

Explicação

Questão 57 de 189

1

Speculating on Exceptions “Recovery mechanism” is

Selecione uma das seguintes:

  • None of them

  • An entity capable of accessing objects

  • Exceptions are rare, so simply predicting no exceptions is very accurate

  • Only write architectural state at commit point, so can throw away partially executed instructions after
    exception

Explicação

Questão 58 de 189

1

What is a RT?

Selecione uma das seguintes:

  • Rename Table

  • Recall Table

  • Relocate Table

  • Remove Table

Explicação

Questão 59 de 189

1

What is a FL?

Selecione uma das seguintes:

  • Free Launch

  • Free List

  • Free Leg

  • Free Last

Explicação

Questão 60 de 189

1

What is an IQ?

Selecione uma das seguintes:

  • Internal Queue

  • Instruction Queue

  • Issue Queue

  • Interrupt Queue

Explicação

Questão 61 de 189

1

At VLIW “Superscalar Control Logic Scaling” which parameters are used?

Selecione uma das seguintes:

  • Width and Height

  • Width and Lifetime

  • Time and Cycle

  • Length and Addition

Explicação

Questão 62 de 189

1

Out-of-Order Control Complexity MIPS R10000 which element is in Control
Logic?

Selecione uma das seguintes:

  • Register name

  • Instruction cache

  • Data tags

  • Data cache

Explicação

Questão 63 de 189

1

Out-of-Order Control Complexity MIPS R10000 which element is not in Control
Logic?

Selecione uma das seguintes:

  • Integer Datapath

  • CLK

  • Address Queue

  • Free List

Explicação

Questão 64 de 189

1

What is “VLIW”?

Selecione uma das seguintes:

  • Very Less Interpreter Word

  • Very Long Instruction Word

  • Very Light Internal Word

  • Very Low Invalid Word

Explicação

Questão 65 de 189

1

At VLIW by “performance and loop iteration” which time is longer?

Selecione uma das seguintes:

  • Loop Unrolled

  • Software Pipelined

Explicação

Questão 66 de 189

1

At VLIW by “performance and loop iteration” which time is shorter?

Selecione uma das seguintes:

  • Loop Unrolled

  • Software Pipelined

Explicação

Questão 67 de 189

1

At VLIW Speculative Execution, which of this solution is true about problem:
Branches restrict compiler code motion?

Selecione uma das seguintes:

  • Hardware to check pointer hazards

  • Speculative operations that don’t cause exceptions

Explicação

Questão 68 de 189

1

At VLIW Speculative Execution, which of this solution is true about problem:
Possible memory hazards limit code scheduling:

Selecione uma das seguintes:

  • Hardware to check pointer hazards

  • Speculative operations that don’t cause exceptions

Explicação

Questão 69 de 189

1

What is an ALAT? :

Selecione uma das seguintes:

  • Advanced Load Address Table

  • Allocated Link Address Table

  • Allowing List Address Table

  • Addition Long Accessibility Table

Explicação

Questão 70 de 189

1

At VLIW Multi-Way Branches, which of this solution is true about problem: Long
instructions provide few opportunities for branches:

Selecione uma das seguintes:

  • Allow one instruction to branch multiple directions

  • Speculative operations that don’t cause exceptions

Explicação

Questão 71 de 189

1

What is a Compulsory?

Selecione uma das seguintes:

  • first-reference to a block, occur even with infinite cache

  • cache is too small to hold all data needed by program, occur even under perfect replacement policy

  • misses that occur because of collisions due to less than full associativity

Explicação

Questão 72 de 189

1

What is a Capacity?

Selecione uma das seguintes:

  • cache is too small to hold all data needed by program, occur even under perfect replacement policy

  • misses that occur because of collisions due to less than full associativity

  • first-reference to a block, occur even with infinite cache

Explicação

Questão 73 de 189

1

What is a Conflict?

Selecione uma das seguintes:

  • misses that occur because of collisions due to less than full associativity

  • first-reference to a block, occur even with infinite cache

  • cache is too small to hold all data needed by program, occur even under perfect replacement policy

Explicação

Questão 74 de 189

1

In Multilevel Caches “Local miss rate” equals =

Selecione uma das seguintes:

  • misses in cache / accesses to cache

  • misses in cache / CPU memory accesses

  • misses in cache / number of instructions

Explicação

Questão 75 de 189

1

In Multilevel Caches “Global miss rate” equals =

Selecione uma das seguintes:

  • misses in cache / CPU memory accesses

  • misses in cache / accesses to cache

  • misses in cache / number of instructions

Explicação

Questão 76 de 189

1

In Multilevel Caches “Misses per instruction” equals =

Selecione uma das seguintes:

  • misses in cache / number of instructions

  • misses in cache / accesses to cache

  • misses in cache / CPU memory accesses

Explicação

Questão 77 de 189

1

Non-Blocking Cache Timeline for “Blocking Cache” the sequence is - ?

Selecione uma das seguintes:

  • CPU time-Cache Miss-Miss Penalty-CPU time

  • CPU time->Cache Miss->Hit->Stall on use->Miss Penalty->CPU time

  • CPU time->Cache Miss->Miss->Stall on use->Miss Penalty->CPU time

Explicação

Questão 78 de 189

1

Non-Blocking Cache Timeline for “Hit Under Miss” the sequence is -?

Selecione uma das seguintes:

  • CPU time->Cache Miss->Hit->Stall on use->Miss Penalty->CPU time

  • CPU time-Cache Miss-Miss Penalty-CPU time

  • CPU time->Cache Miss->Miss->Stall on use->Miss Penalty->CPU time

Explicação

Questão 79 de 189

1

Non-Blocking Cache Timeline for “Miss Under Miss” the sequence is -?

Selecione uma das seguintes:

  • CPU time->Cache Miss->Miss->Stall on use->Miss Penalty->Miss Penalty->CPU time

  • CPU time-Cache Miss-Miss Penalty-CPU time

  • CPU time->Cache Miss->Hit->Stall on use->Miss Penalty->CPU time

Explicação

Questão 80 de 189

1

What does mean MSHR?

Selecione uma das seguintes:

  • Miss Status Handling Register

  • Map Status Handling Reload

  • Mips Status Hardware Register

  • Memory Status Handling Register

Explicação

Questão 81 de 189

1

What does MAF?

Selecione uma das seguintes:

  • Miss Address File

  • Map Address File

  • Memory Address File

Explicação

Questão 82 de 189

1

At Critical Word First for Miss Penalty chose correct sequence of Basic Blocking
Cache “Order of fill”:

Selecione uma das seguintes:

  • 0,1,2,3,4,5,6,7

  • 3,4,5,6,7,0,1,2

Explicação

Questão 83 de 189

1

At Critical Word First for Miss Penalty chose correct sequence of Blocking
Cache with Critical Word first “Order of fill”:

Selecione uma das seguintes:

  • 3,4,5,6,7,0,1,2

  • 0,1,2,3,4,5,6,7

Explicação

Questão 84 de 189

1

Storage Systems, “Larger block size to reduce miss rate”

Selecione uma das seguintes:

  • The simplest way to reduce the miss rate is to take advantage of spatial locality and increase
    the block size

  • The obvious way to reduce capacity misses is to increase cache capacity

  • Obviously, increasing associativity reduces conflict misses

Explicação

Questão 85 de 189

1

Storage Systems, “Bigger caches to reduce miss rate” -

Selecione uma das seguintes:

  • The obvious way to reduce capacity misses is to increase cache capacity

  • Obviously, increasing associativity reduces conflict misses

  • The simplest way to reduce the miss rate is to take advantage of spatial locality and increase
    the block size

Explicação

Questão 86 de 189

1

Storage Systems, “Higher associativity to reduce miss rate” -

Selecione uma das seguintes:

  • Obviously, increasing associativity reduces conflict misses

  • The obvious way to reduce capacity misses is to increase cache capacity

  • The simplest way to reduce the miss rate is to take advantage of spatial locality and increase
    the block size

Explicação

Questão 87 de 189

1

In Non-Blocking Caches what does mean “Critical Word First”?

Selecione uma das seguintes:

  • Request the missed word first from memory and send it to the processor as soon as it arrives;
    let the processor continue execution while filling the rest of the words in the block

  • Fetch the words in normal order, but as soon as the requested word of the block arrives,
    send it to the processor and let the processor continue execution

Explicação

Questão 88 de 189

1

In Non-Blocking Caches what does mean “Early restart”?

Selecione uma das seguintes:

  • Fetch the words in normal order, but as soon as the requested word of the block arrives, send
    it to the processor and let the processor continue execution

  • Request the missed word first from memory and send it to the processor as soon as it
    arrives; let the processor continue execution while filling the rest of the words in the block

Explicação

Questão 89 de 189

1

A virus classification by target includes the following categories, What is a File
infector?

Selecione uma das seguintes:

  • A typical approach is as follows

  • Infects files that the operating system or shell consider to be executable

  • The key is stored with the virus

  • Far more sophisticated techniques are possible

Explicação

Questão 90 de 189

1

What is a RAID 0?

Selecione uma das seguintes:

  • It has no redundancy and is sometimes nicknamed JBOD, for “just a bunch of disks,” although
    the data may be striped across the disks in the array

  • Also called mirroring or shadowing, there are two copies of every piece of data

  • This organization was inspired by applying memory-style error correcting codes to disks

Explicação

Questão 91 de 189

1

What is a RAID 1?

Selecione uma das seguintes:

  • Also called mirroring or shadowing, there are two copies of every piece of data

  • It has no redundancy and is sometimes nicknamed JBOD, for “just a bunch of disks,”
    although the data may be striped across the disks in the array

  • This organization was inspired by applying memory-style error correcting codes to disks

Explicação

Questão 92 de 189

1

What is a RAID 2?

Selecione uma das seguintes:

  • This organization was inspired by applying memory-style error correcting codes to disks

  • It has no redundancy and is sometimes nicknamed JBOD, for “just a bunch of disks,”
    although the data may be striped across the disks in the array

  • Also called mirroring or shadowing, there are two copies of every piece of data

Explicação

Questão 93 de 189

1

What is a RAID 3?

Selecione uma das seguintes:

  • Since the higher-level disk interfaces understand the health of a disk, it’s easy to figure out which disk failed

  • Many applications are dominated by small accesses

  • Also called mirroring or shadowing, there are two copies of every piece of data

Explicação

Questão 94 de 189

1

What is a RAID 4?

Selecione uma das seguintes:

  • Many applications are dominated by small accesses

  • Since the higher-level disk interfaces understand the health of a disk, it’s easy to figure out which disk
    failed

  • Also called mirroring or shadowing, there are two copies of every piece of data

Explicação

Questão 95 de 189

1

At storage systems Gray and Siewiorek classify faults what does mean
“Hardware faults”? :

Selecione uma das seguintes:

  • Devices that fail, such as perhaps due to an alpha particle hitting a memory cell

  • Faults in software (usually) and hardware design (occasionally)

  • Mistakes by operations and maintenance personnel

Explicação

Questão 96 de 189

1

At storage systems Gray and Siewiorek classify faults what does mean “Design
faults”? :

Selecione uma das seguintes:

  • Faults in software (usually) and hardware design (occasionally)

  • Devices that fail, such as perhaps due to an alpha particle hitting a memory cell

  • Mistakes by operations and maintenance personnel

Explicação

Questão 97 de 189

1

At storage systems Gray and Siewiorek classify faults what does mean
“Operation faults”? :

Selecione uma das seguintes:

  • Mistakes by operations and maintenance personnel

  • Devices that fail, such as perhaps due to an alpha particle hitting a memory cell

  • Faults in software (usually) and hardware design (occasionally)

Explicação

Questão 98 de 189

1

At storage systems Gray and Siewiorek classify faults what does mean
“Environmental faults”? :

Selecione uma das seguintes:

  • Fire, flood, earthquake, power failure, and sabotage

  • Faults in software (usually) and hardware design (occasionally)

  • Devices that fail, such as perhaps due to an alpha particle hitting a memory cell

Explicação

Questão 99 de 189

1

If we talk about storage systems an interaction or transaction with a computer is
divided for first what is an “Entry time” - ? :

Selecione uma das seguintes:

  • The time for the user to enter the command

  • The time between when the user enters the command and the complete response is displayed

  • The time from the reception of the response until the user begins to enter the next command

Explicação

Questão 100 de 189

1

If we talk about storage systems an interaction or transaction with a
computer is divided for first what is an “System response time” - ?:

Selecione uma das seguintes:

  • The time between when the user enters the command and the complete response is displayed

  • The time for the user to enter the command

  • The time from the reception of the response until the user begins to enter the next command

Explicação

Questão 101 de 189

1

If we talk about storage systems an interaction or transaction with a
computer is divided for first what is an “Think time” - ?:

Selecione uma das seguintes:

  • The time from the reception of the response until the user begins to enter the next command

  • The time for the user to enter the command

  • The time between when the user enters the command and the complete response is displayed

Explicação

Questão 102 de 189

1

Little’s Law and a series of definitions lead to several useful equations for
“Time server” - :

Selecione uma das seguintes:

  • Average time to service a task; average service rate is 1/Time server traditionally represented
    by the symbol μ in many queuing texts

  • Average time/task in the system, or the response time, which is the sum of Time queue and Time server

  • Average time per task in the queue

Explicação

Questão 103 de 189

1

Little’s Law and a series of definitions lead to several useful equations for
“Time queue” - :

Selecione uma das seguintes:

  • Average time per task in the queue

  • Average time to service a task; average service rate is 1/Time server traditionally
    represented by the symbol μ in many queuing texts

  • Average time/task in the system, or the response time, which is the sum of Time queue and Time server

Explicação

Questão 104 de 189

1

Little’s Law and a series of definitions lead to several useful equations for
“Time system” - :

Selecione uma das seguintes:

  • Average time/task in the system, or the response time, which is the sum of Time queue and Time server

  • Average time to service a task; average service rate is 1/Time server traditionally
    represented by the symbol μ in many queuing texts

  • Average time per task in the queue

Explicação

Questão 105 de 189

1

Little’s Law and a series of definitions lead to several useful equations for
“Length server” - :

Selecione uma das seguintes:

  • Average number of tasks in service

  • Average length of queue

Explicação

Questão 106 de 189

1

Little’s Law and a series of definitions lead to several useful equations for
“Length queue” -:

Selecione uma das seguintes:

  • Average length of queue

  • Average number of tasks in service

Explicação

Questão 107 de 189

1

How many size of Cache L1 is true approximately? :

Selecione uma das seguintes:

  • 8 KB

  • 256 KB

  • 2 MB

Explicação

Questão 108 de 189

1

How many size of Cache L2 is true approximately?

Selecione uma das seguintes:

  • 256 KB

  • 4 KB

  • 32 MB

Explicação

Questão 109 de 189

1

How many size of Cache L3 is true approximately?

Selecione uma das seguintes:

  • 3 MB

  • 256 MB

  • 256 KB

Explicação

Questão 110 de 189

1

How many main levels of Cache Memory?

Selecione uma das seguintes:

  • 3

  • 2

  • 6

  • 8

Explicação

Questão 111 de 189

1

What is a “Synchronization” in Cache Memory?

Selecione uma das seguintes:

  • Execution or waiting for synchronization variables

  • Execution in the OS that is neither idle nor in synchronization access

  • Execution in user code

Explicação

Questão 112 de 189

1

What is a “Kernel” in Cache Memory?

Selecione uma das seguintes:

  • Execution or waiting for synchronization variables

  • Execution in the OS that is neither idle nor in synchronization access

  • Execution in user code

Explicação

Questão 113 de 189

1

What is a “Synchronization” in Cache Memory?

Selecione uma das seguintes:

  • Execution in the OS that is neither idle nor in synchronization access

  • Execution in user code

  • Execution or waiting for synchronization variables

Explicação

Questão 114 de 189

1

Network performance depends of what?

Selecione uma das seguintes:

  • performance of swithes and transmission system

  • performance of switches

  • performance of transmission system

  • has no dependensies

Explicação

Questão 115 de 189

1

The time between the start and the completion of an event ,such as milliseconds
for a disk access is...

Selecione uma das seguintes:

  • latency

  • bandwidth

  • throughput

  • performance

Explicação

Questão 116 de 189

1

Total amount of work done in a given time ,such as megabytes per second for disk
transfer...

Selecione uma das seguintes:

  • bandwidth

  • latency

  • throughput

  • performance

Explicação

Questão 117 de 189

1

Learning curve itself is best measured by change in...

Selecione uma das seguintes:

  • yeld

  • bytes

  • bits

  • seconds

Explicação

Questão 118 de 189

1

Products that are sold by multiple vendors in large volumes and are essentialy
identical

Selecione uma das seguintes:

  • commodities

  • boxes

  • folders

  • files

Explicação

Questão 119 de 189

1

Integrated circuit processes are charecterized by the

Selecione uma das seguintes:

  • feature size

  • permanent size n

  • compex size

  • fixed size

Explicação

Questão 120 de 189

1

For CMOS chips, the traditional dominant energy consumption has been in
switching transistors, called ____

Selecione uma das seguintes:

  • dynamic power

  • physical energy

  • constant supply

  • simple battery

Explicação

Questão 121 de 189

1

Manufacturing costs that decrease over time are ____

Selecione uma das seguintes:

  • the learning curve

  • the cycled line

  • the regular option

  • the final loop

Explicação

Questão 122 de 189

1

Volume is a ________ key factor in determining cost

Selecione uma das seguintes:

  • second

  • first

  • fifth

  • third

Explicação

Questão 123 de 189

1

The most companies spend only ____________ of their income on R&D, which
includes all engineering.

Selecione uma das seguintes:

  • 4% to 12%

  • 15% to 30%

  • 1% to 17%

  • 30% to 48%

Explicação

Questão 124 de 189

1

Systems alternate between two states of service with respect to an SLA:

Selecione uma das seguintes:

  • 1. Service accomplishment, where the service is delivered as specified
    2. Service interruption, where the delivered service is different from the SLA

  • 1. Service accomplishment, where the service is not delivered as specified
    2. Service interruption, where the delivered service is different from the SLA

  • 1. Service accomplishment, where the service is not delivered as specified
    2. Service interruption, where the delivered service is not different from the SLA

  • 1. Service accomplishment, where the service is delivered as specified
    2. Service interruption, where the delivered service is not different from the SLA

Explicação

Questão 125 de 189

1

Desktop benchmarks divide into __ broad classes:

Selecione uma das seguintes:

  • two

  • three

  • four

  • five

Explicação

Questão 126 de 189

1

What MTTF means:

Selecione uma das seguintes:

  • mean time to failure

  • mean time to feauture

  • mean this to failure

  • my transfers to failure

Explicação

Questão 127 de 189

1

A widely held rule of thumb is that a program spends __ of its execution time in
only __ of the code.

Selecione uma das seguintes:

  • 90% 10%

  • 50% 50%

  • 70% 30%

  • 89% 11%

Explicação

Questão 128 de 189

1

(Performance for entire task using the enhancement when possible) / (Performance
for entire task without using the enhancement) is equals to:

Selecione uma das seguintes:

  • Speedup

  • Efficiency

  • Probability

  • Ration

Explicação

Questão 129 de 189

1

Which of the following descriptions corresponds to static power?

Selecione uma das seguintes:

  • Grows proportionally to the transistor count (whether or not the transistors are switching)

  • Proportional to the product of the number of switching transistors and the switching rate
    Probability

  • Proportional to the product of the number of switching transistors and the switching rate

  • All of the above

Explicação

Questão 130 de 189

1

Which of the following descriptions corresponds to dynamic power?

Selecione uma das seguintes:

  • Proportional to the product of the number of switching transistors and the switching rate

  • Grows proportionally to the transistor count (whether or not the transistors are switching)

  • Certainly a design concern

  • None of the above

Explicação

Questão 131 de 189

1

Which of the written below is NOT increase power consumption?

Selecione uma das seguintes:

  • Increasing multithreading

  • Increasing performance

  • Increasing multiple cores

  • Increasing multithreading (V baze tak napisano)

Explicação

Questão 132 de 189

1

Growing performance gap between peak and sustained performance translates to
increasing energy per unit of performance, when:

Selecione uma das seguintes:

  • The number of transistors switching will be proportional to the peak issue rate, and the
    performance is proportional to the sustained rate

  • The number of transistors switching will be proportionalto the sustained rate, and the
    performance is proportionalto the peak issue rate

  • The number of transistors switching will be proportional to the sustained rate

  • The performance is proportional to the peak issue rate

Explicação

Questão 133 de 189

1

If we want to sustain four instructions per clock

Selecione uma das seguintes:

  • We must fetch more, issue more, and initiate execution on more than four instructions

  • We must fetch less, issue more, and initiate execution on more than two instructions

  • We must fetch more, issue less, and initiate execution on more than three instructions

  • We must fetch more, issue more, and initiate execution on less than five instructions

Explicação

Questão 134 de 189

1

If speculation were perfect, it could save power, since it would reduce the execution time and
save _____________, while adding some additional overhead to implement

Selecione uma das seguintes:

  • Static power

  • Dynamic power

  • Processing rate

  • Processor state

Explicação

Questão 135 de 189

1

When speculation is not perfect, it rapidly becomes energy inefficient, since it requires
additional ___________ both for the incorrect speculation and for the resetting of the processor
state

Selecione uma das seguintes:

  • Dynamic power

  • Static power

  • Processing rate

  • Processor state

Explicação

Questão 136 de 189

1

Which of these concepts is NOT illustrated case study by Wen-mei W. Hwu and John W.
Sias

Selecione uma das seguintes:

  • Achievable ILP with software resource constraints

  • Limited ILP due to software dependences

  • Achievable ILP with hardware resource constraints

  • Variability of ILP due to software and hardware interaction

Explicação

Questão 137 de 189

1

What is a hash table?

Selecione uma das seguintes:

  • Popular data structure for organizing a large collection of data items so that one can quickly
    answer questions

  • Popular data structure for updating large collections, so that one can hardly answer questions

  • Popular tables for organizing a large collection of data structure

  • Popular data structure for deletingsmall collections of data items so that one can hardly
    answer questions

Explicação

Questão 138 de 189

1

Which of these is NOT characteristics of recent highperformance microprocessors?

Selecione uma das seguintes:

  • Color

  • Power

  • Functional unit capability

  • Clock rate

Explicação

Questão 139 de 189

1

How this process called: “Operations execute as soon as their operands are available”

Selecione uma das seguintes:

  • data flow execution

  • instruction execution

  • data control execution

  • instruction field execution

Explicação

Questão 140 de 189

1

For what the reorder buffer is used :

Selecione uma das seguintes:

  • To pass results among instructions that may be speculated

  • To pass parameters through instructions that may be speculated

  • To get additional registers in the same way as the reservation stations

  • To control registers

Explicação

Questão 141 de 189

1

How many fields contains the entry in the ROB:

Selecione uma das seguintes:

  • 4

  • 5

  • 6

  • 3

Explicação

Questão 142 de 189

1

Choose correct fields of entry in the ROB:

Selecione uma das seguintes:

  • the instruction type, the destination field, the value field, and the ready field

  • the source type, the destination field, the value field, and the ready field

  • the program type, the ready field, the parameter field, the destination field

  • the instruction type, the destination field, and the ready field

Explicação

Questão 143 de 189

1

Choose the steps of instruction execution:

Selecione uma das seguintes:

  • issue, execute, write result, commit

  • execution, commit, rollback

  • issue, execute, override, exit

  • begin, write, interrupt, commit

Explicação

Questão 144 de 189

1

Which one is not the major flavor of Multiple-issue processors

Selecione uma das seguintes:

  • statistically superscalar processors

  • dynamically scheduled superscalar processors

  • statically scheduled superscalar processors

  • VLIW (very long instruction word) processors

Explicação

Questão 145 de 189

1

Which Multiple-issue processors has not the hardware hazard detection

Selecione uma das seguintes:

  • EPIC

  • Superscalar(dynamic)

  • Superscalar(static)

  • Superscalar(speculative)

Explicação

Questão 146 de 189

1

Examples of EPIC:

Selecione uma das seguintes:

  • Itanium

  • Pentium 4, MIPS R12K, IBM, Power5

  • MIPS and ARM

  • TI C6x

Explicação

Questão 147 de 189

1

Examples of superscalar(static):

Selecione uma das seguintes:

  • MIPS and ARM

  • Pentium 4, MIPS R12K, IBM, Power5

  • Itanium

  • TI C6x

Explicação

Questão 148 de 189

1

Examples of superscalar(dynamic) :

Selecione uma das seguintes:

  • None at the present

  • Pentium 4, MIPS R12K, IBM, Power5

  • MIPS and ARM

  • TI C6x

Explicação

Questão 149 de 189

1

Examples of VLIW/LIW:

Selecione uma das seguintes:

  • TI C6x

  • MIPS and ARM

  • Itanium

  • Pentium 4, MIPS R12K, IBM, Power5

Explicação

Questão 150 de 189

1

A branch-prediction cache that stores the predicted address for the next instruction after a
branch

Selecione uma das seguintes:

  • branch-target buffer

  • data buffer

  • frame buffer

  • optical buffer

Explicação

Questão 151 de 189

1

Buffering the actual target instructions allows us to perform an optimization which called:

Selecione uma das seguintes:

  • branch folding

  • Branch prediction

  • Target instructions

  • Target address

Explicação

Questão 152 de 189

1

Which is not the function of integrated instruction fetch unit:

Selecione uma das seguintes:

  • Instruction memory commit

  • Integrated branch prediction

  • Instruction prefetch

  • Instruction memory access and buffering

Explicação

Questão 153 de 189

1

What is the simple technique that predicts whether two stores or a load and a store refer to
the same memory address:

Selecione uma das seguintes:

  • Address aliasing prediction

  • Branch prediction

  • Integrated branch prediction

  • Dynamic branch prediction

Explicação

Questão 154 de 189

1

How to decrypt RISC?

Selecione uma das seguintes:

  • Reduced Instruction Set Computer

  • Recall Instruction Sell Communication

  • Rename Instruction Sequence Corporation

  • Red Instruction Small Computer

Explicação

Questão 155 de 189

1

The ideal pipeline CPI is a measure of …

Selecione uma das seguintes:

  • the maximum performance attainable by the implementation

  • the maximum performance attainable by the instruction

  • the minimum performance attainable by the implementation

  • the minimum performance attainable by the instruction

Explicação

Questão 156 de 189

1

What is the Pipeline CP = ?

Selecione uma das seguintes:

  • deal pipeline CPI + Structural stalls + Data hazard stalls + Control stalls

  • deal pipeline CPU + Data hazard stalls + Control stalls

  • deal pipeline CPU + deal pipeline CPI + Data hazard stalls + Control stalls

  • Structural stalls + Data hazard stalls + Control stalls

Explicação

Questão 157 de 189

1

The simplest and most common way to increase the ILP is …?

Selecione uma das seguintes:

  • to exploit parallelism among iterations of a loop

  • to exploit minimalism among iterations of a loop

  • to destroy iterations of a loop

  • to decrease the minimalism of risk

Explicação

Questão 158 de 189

1

The simplest and most common way to increase the ILP is to exploit parallelism among
iterations of a loop. How is often called?

Selecione uma das seguintes:

  • loop-level parallelism

  • exploit-level parallelism

  • high-level minimalism

  • low-level minimalism

Explicação

Questão 159 de 189

1

In parallelism have three different types of dependences, tagging him:

Selecione uma das seguintes:

  • data dependences , name dependences , and control dependences

  • data dependences , name dependences , and surname dependences

  • datagram dependences , name dependences , and animal dependences

  • no correct answers

Explicação

Questão 160 de 189

1

What is Name dependence?

Selecione uma das seguintes:

  • name dependence occurs when two instructions use the same register or memory location

  • name dependence occurs when five or more instructions use the same register or memory location

  • name dependence occurs when instructions use the same name

  • All answers is correct

Explicação

Questão 161 de 189

1

When occurs an output dependence?

Selecione uma das seguintes:

  • When i and instruction j write the same register or memory location

  • when i and instruction j write the same name

  • when i and instruction j write the same adress or memory location

  • All answers is correct

Explicação

Questão 162 de 189

1

What is RAW (read after write)?

Selecione uma das seguintes:

  • when j tries to read a source before i writes it, so j incorrectly gets the old value

  • when i tries to read a source before j writes it, so j correctly gets the old value

  • when j tries to write a source before i writes it

  • when a tries to write a source before b read it, so a incorrectly gets the old value

Explicação

Questão 163 de 189

1

What is given is not a hazard?

Selecione uma das seguintes:

  • RAR

  • WAR

  • WAW

  • LOL

Explicação

Questão 164 de 189

1

A simple scheme for increasing the number of instructions relative to the branch and
overhead instructions is…?

Selecione uma das seguintes:

  • loop unrolling

  • RAR

  • loop-level

  • loop rolling

Explicação

Questão 165 de 189

1

Effect that results from instruction scheduling in large code segments is called…?

Selecione uma das seguintes:

  • register pressure

  • loop unrolling

  • loop-level

  • registration

Explicação

Questão 166 de 189

1

The simplest dynamic branch-prediction scheme is a

Selecione uma das seguintes:

  • branch-prediction buffer

  • branch buffer

  • All answers correct

  • registration

Explicação

Questão 167 de 189

1

Branch predictors that use the behavior of other branches to make a prediction are called

Selecione uma das seguintes:

  • correlating predictors or two-level predictors

  • branch-prediction buffer

  • branch table

  • three level loop

Explicação

Questão 168 de 189

1

How many branch-selected entries are in a (2,2) predictor that has a total of 8K bits in the
prediction buffer? If we know that Number of prediction entries selected by the branch = 8K

Selecione uma das seguintes:

  • the number of prediction entries selected by the branch = 1K.

  • the number of prediction entries selected by the branch = 2K.

  • the number of prediction entries selected by the branch = 8K.

  • the number of prediction entries selected by the branch = 4K.

Explicação

Questão 169 de 189

1

What is the compulsory in Cs model?

Selecione uma das seguintes:

  • The very first access to a block cannot be in the cache, so the block must be brought into the cache.
    Compulsory misses are those that occur even if you had an infinite cache

  • If the cache cannot contain all the blocks needed during execution of a program, capacity misses
    (in addition to compulsory misses) will occur because of blocks being discarded and later
    retrieved

  • The number of accesses that miss divided by the number of accesses.

  • None of them

Explicação

Questão 170 de 189

1

What is capacityin Cs model?

Selecione uma das seguintes:

  • If the cache cannot contain all the blocks needed during execution of a program, capacity misses
    (in addition to compulsory misses) will occur because of blocks being discarded and later retrieved

  • The very first access to a block cannot be in the cache, so the block must be brought into the
    cache. Compulsory misses are those that occur even if you had an infinite cache.

  • The number of accesses that miss divided by the number of accesses.

  • None of them

Explicação

Questão 171 de 189

1

What is conflict in Cs model?

Selecione uma das seguintes:

  • If the block placement strategy is not fully associative, conflict misses (in addition to compulsory
    and capacity misses) will occur because a block may be discarded and later retrieved if conflicting
    blocks map to its set

  • The very first access to a block cannot be in the cache, so the block must be brought into the
    cache. Compulsory misses are those that occur even if you had an infinite cache.

  • If the cache cannot contain all the blocks needed during execution of a program, capacity misses
    (in addition to compulsory misses) will occur because of blocks being discarded and later
    retrieved

  • None of them

Explicação

Questão 172 de 189

1

Choose the benefit of Cache Optimization.

Selecione uma das seguintes:

  • Larger block size to reduce miss rate

  • Bigger caches to increase miss rat

  • Single level caches to reduce miss penalty

  • None of them

Explicação

Questão 173 de 189

1

Choose the strategy of Seventh Optimization.

Selecione uma das seguintes:

  • Critical word first

  • Critical restart

  • Sequential inter leaving

  • Merging Write Buffer to Reduce Miss Penalty

Explicação

Questão 174 de 189

1

Choose the Eight Optimization

Selecione uma das seguintes:

  • Merging Write Buffer to Reduce Miss Penalty

  • Critical word first

  • Nonblocking Caches to Increase Cache Bandwidth

  • Trace Caches to Reduce Hit Time

Explicação

Questão 175 de 189

1

Choose the Eleventh Optimization

Selecione uma das seguintes:

  • Compiler-Controlled Prefetching to Reduce Miss Penalty or Miss Rate

  • Merging Write Buffer to Reduce Miss Penalty

  • Hardware Prefetching of Instructions and Data to Reduce Miss Penalty or Miss Rate

  • None of them

Explicação

Questão 176 de 189

1

What is the access time?

Selecione uma das seguintes:

  • Time between when a read is requested and when the desired word arrives

  • The minimum time between requests to memory.

  • Describes the technology inside the memory chips and those innovative, internal organizations

  • None of them

Explicação

Questão 177 de 189

1

What is the cycle time?

Selecione uma das seguintes:

  • The minimum time between requests to memory

  • Time between when a read is requested and when the desired word arrives

  • The maximum time between requests to memory.

  • None of them

Explicação

Questão 178 de 189

1

How much in percentage single-processor performance improvement has dropped to
less than?

Selecione uma das seguintes:

  • 11%

  • 22%

  • 33%

Explicação

Questão 179 de 189

1

How many elements of the Instruction Set Architecture (ISA):

Selecione uma das seguintes:

  • 6

  • 7

  • 8

Explicação

Questão 180 de 189

1

What is the Thread Level Parallelism –

Selecione uma das seguintes:

  • Exploits either data-level parallelism or task-level parallelism in a tightly coupled hardware model that
    allows for interaction among parallel threads.

  • Exploit data-level parallelism by applying a single instruction to a collection of data in parallel.

  • Exploits parallelism among largely decoupled tasks specified by the programmer or operating system.

Explicação

Questão 181 de 189

1

What is the PMD in computer classes?

Selecione uma das seguintes:

  • Personal mobile device

  • Powerful markup distance

  • Percentage map device

Explicação

Questão 182 de 189

1

What is the Instruction Level Parallelism:

Selecione uma das seguintes:

  • Exploits data-level parallelism at modest levels with compiler help using ideas like pipelining and at a
    medium levels using ideas like speculative execution.

  • Exploits parallelism among largely decoupled tasks specified by the programmer or operating system

  • Exploit data-level parallelism by applying a single instruction to a collection of data in parallel

Explicação

Questão 183 de 189

1

How many elements in Trends of Technology?

Selecione uma das seguintes:

  • 5

  • 6

  • 4

Explicação

Questão 184 de 189

1

What is the Vector Architecture and Graphic Processor Units (GPUs) –

Selecione uma das seguintes:

  • Exploit data-level parallelism by applying a single instruction to a collection of data in parallel.

  • Exploits data-level parallelism at modest levels with compiler help using ideas like pipelining and at a
    medium levels using ideas like speculative execution

  • Exploits parallelism among largely decoupled tasks specified by the programmer or operating system.

Explicação

Questão 185 de 189

1

How many Optimizations’ in Cache memory Performance?

Selecione uma das seguintes:

  • 8

  • 6

  • 10

Explicação

Questão 186 de 189

1

What is the Reducing the Miss Rate?

Selecione uma das seguintes:

  • Time Optimization

  • Compiler Optimization

  • Performance Optimization

Explicação

Questão 187 de 189

1

What is the Spatial Locality?

Selecione uma das seguintes:

  • Exploit by fetching blocks of data around recently accessed locations

  • Exploit by remembering the contents of recently accessed locations

Explicação

Questão 188 de 189

1

What is the Temporal Locality?

Selecione uma das seguintes:

  • Exploit by fetching blocks of data around recently accessed locations

  • Exploit by remembering the contents of recently accessed locations

Explicação

Questão 189 de 189

1

True formula of Module availability (MTTF – mean time to failure, MTTR – mean
time to repair)?

Selecione uma das seguintes:

  • MTTF / (MTTF + MTTR)

  • MTTF * (MTTF + MTTR)

  • MTTF * (MTTF - MTTR)

Explicação