In a MIPS32 system suppose a 4byte signed integer variable n
Solution
13)The purpose of memory is to store groups of bits, and deliver them to the processor for loading into registers upon demand. Most present-day computers store information in multiples of 8 bits, called a byte.Most also assign a numeric address to each byte. This is convenient because characters can be stored in bytes.
 Memory addresses are 32-bit numbers, ranging from 0x00000000 to 0xFFFFFFFF. This is a large amount of memory, most computers do not have actual memory for all of this address space.
 Memory can hold both program instructions and data. One function of the operating system is to assign blocks of
 memory for the instructions and data of each process .
MIPS is little-endian. One result of this is that character data appear to be stored backwards within words.
In the case of MIPS, a word is 32 bits, that is, 4 bytes.Words are always stored in consecutive bytes, starting with an address that is divisible by 4.In the MIPS, all registers hold 32 bits.

