Answer from cs61c-ao (Roger Tseng 16507336) for Question 2 this improves the performance of the cache by accessing the first index of the array first and then accessing the 2nd index. this access the memory elements in sequentially and thus increases your hit rate. whereas the first code accesses different words of different indexs of the array which may cause misses because those elements can be located anywhere in memory.