Given the following 32-bit integer, fill in the diagrams to…

Given the following 32-bit integer, fill in the diagrams to show how the integer would be stored in memory in both big and little-endian architectures. Assume the integer is stored in memory starting at address 0x100. Assume a byte-addressable architecture. Write your responses in uppercase hex format (e.g. 0xAA). 0x87654123 Little Endian Address +100 +101 +102 +103 Data [le100] [le101] [le102] [le103] Big Endian Address +100 +101 +102 +103 Data [be100] [be101] [be102] [be103]