Multiple choice what data structure could you use to store a grid (like a chess board)? a list a dictionary a vector a two dimensional array Reveal answer Fill a bubble to check yourself D Correct answer Explanation A two-dimensional array (or a list of lists in Python) is the standard way to represent a grid structure.