150k views
0 votes
assuming the addresses are in registers, if the size of a word is 4 bytes, the address of the next word can be found by adding 1 to the current word's address. true or false

User Jayars
by
7.7k points

1 Answer

7 votes

Final answer:

It is false that the address of the next word is obtained by adding 1 to the current word's address in byte-addressable memory when the word size is 4 bytes; instead, you would add 4 to find the next word's address.

Step-by-step explanation:

The statement that the address of the next word can be found by adding 1 to the current word's address is false if the size of a word is 4 bytes. In computer memory, addresses are typically byte-addressable, which means each address refers to a different byte. To find the address of the next word, you would add the size of the word to the current word's address. Since the size of the word is stated to be 4 bytes, you would add 4 to the current address to get the address of the next word.

User Shapeare
by
8.2k points