<h2>
Answer:</h2>
Following are given answers to each part with explanation:
<h2>
Explanation:</h2>
1. lt takes multiple clock cycles to access data from memory.
The statement is TRUE.
Accessing data from memory acquires two steps. In first step the address is read and in second step we go to the address in order to access the data.
2.Each byte of memory has a unique address.
The statement is TRUE.
Each byte in the memory attains a unique address therefore we can access the data residing at each byte specifically by giving address.
3.The total memory used by all running programs can never be larger than the computer's physical memory.
The statement is TRUE.
The running parts are always a sub part o a system so combining them all cannot exceed the total size of computer's physical memory.
4.The lower half (or least significant half) of the EBX register is called BX.
The statement is TRUE.
BX is he least significant or lower half of the register EBX (extended BX).
5.The following data locations are in order of fastest access time to slowest access time: cache, registers, main memory.
The statement is TRUE.
Yes the order of data locations from faster to lower is given correctly:
Cache is accessed faster than registers and in the end comes main memory.
6.The ALU performs only addition, subtraction, multiplication, and division operation:s
The statement is FALSE.
ALU is an abbreviation of Arithmetic Logic unit. So it performs arithmetical operations such as addition, subtraction, multiplication, and division as well as the Logical operations that are AND OR NOT XOR.
7. The control unit (CU) coordinates the sequencing of execution steps in an instruction cycle.
The statement is TRUE.
As obvious from the name Control unit (CU) has assigned the coordination of execution of steps in sequence.
8.The EIP register is updated when an instruction is fetched.
The statement is TRUE.
Whenever the user retrieve any instruction from EIP or fetch the instruction from it. EIP gets updated.
9.The step to fetch an operand is always necessary in the instruction cycle.
The statement is TRUE.
Most of the Instructions demand an operand in the instruction cycle so that they could be operated on. While some instruction not demand the operand such as Exit. But majority demands the operand so it is true.
10.In an instruction cycle, the operands are fetched before the instruction is fetched.
The statement is FALSE.
The first part of instruction cycle is to fetch the instruction, whereas the operands are fetched after it. So the statement get FALSE.
<h3>I hope it will help you!</h3>