Complete the sentence to describe arrays: Arrays store elements in {{BLANK_1}} locations.
Arrays store elements in [1] locations.
Arrays store elements in contiguous memory locations, meaning elements are placed one after another in memory.
Complete the sentence to describe linked lists: Each element in a linked list contains data and a {{BLANK_1}} to the next element.
Each element in a linked list contains data and a [1] to the next element.
In a linked list, each element has a pointer (or reference) to the next element, allowing dynamic linking.
Fix the error in this statement: Arrays have {{BLANK_1}} insertion and deletion at the beginning compared to linked lists.
Arrays have [1] insertion and deletion at the beginning compared to linked lists.
Arrays have slower insertion and deletion at the beginning because elements need to be shifted, unlike linked lists which can adjust pointers quickly.
Fill both blanks to complete the comparison: Arrays have {{BLANK_1}} access time but {{BLANK_2}} memory usage than linked lists.
Arrays have [1] access time but [2] memory usage than linked lists.
Arrays provide faster access time because elements are contiguous, but they use lower memory since they don't store pointers like linked lists.
Fill all three blanks to complete the statement: Linked lists {{BLANK_1}} dynamic size, {{BLANK_2}} easy insertion, and {{BLANK_3}} slower random access compared to arrays.
Linked lists [1] dynamic size, [2] easy insertion, and [3] slower random access compared to arrays.
Linked lists support dynamic size, allow easy insertion, and have slower random access compared to arrays.