Question: If A = [[1, 2], [3, 4]] and B = [[5, 6], [7, 8]], what is A + B?
Options:
Correct Answer: [6, 8], [10, 12]
Solution:
A + B = [[1+5, 2+6], [3+7, 4+8]] = [[6, 8], [10, 12]].