Answer
See the explanation
Work Step by Step
**Row Major Order:**
In row major order, the elements of the array are stored row by row. So, the sequence of storage would be:
\[ A, B, C, D, E, F, G, H, I, J, K, L \]
Here's how it would look in memory:
```
___________________
| A | B | C | D | E |
|___|___|___|___|___|
| F | G | H | I | J |
|___|___|___|___|___|
| K | L | | | |
|___|___|___|___|___|
```
**Column Major Order:**
In column major order, the elements of the array are stored column by column. So, the sequence of storage would be:
\[ A, E, I, B, F, J, C, G, K, D, H, L \]
Here's how it would look in memory:
```
___________________
| A | E | I | B | F |
|___|___|___|___|___|
| J | C | G | K | D |
|___|___|___|___|___|
| H | L | | | |
|___|___|___|___|___|
```
These illustrations demonstrate how the array is stored in memory in both row major and column major orders.