Computer Science, asked by ananyatyagi940, 20 days ago

each cell contain 1 bit of _____ .​

Answers

Answered by suhanikumari6543
0

Answer:

please mark me as brainlist and say thanks

Answered by XxSwordBoyxX
0

Answer:

There is almost no chance that your memory is bit-addressed. The most likely situation is that your addresses are byte-addresses. And when you get the value of a 32-bit variable, the question is whether that address points at the Most Significant Byte or the Least Significant Byte of that 4-byte value - which is architecture dependent (e.g. x86 is little-endian, while MIPS is big-endian).

To give you an example in C, assuming your variable var has the value 0xDEADBEEF it might be stored in memory in one of two ways:

Big-Endian (because the address 0x125 points to the MSB

Similar questions