They asked me to explain the difference between an Array and a Linked List and give an example use case for each
Sigiloso
I explained that an Array provides constant-time access with indexes but resizing is costly, while a Linked List allows efficient insertions and deletions but requires sequential access. I gave an example of arrays being better for storing fixed-size data like student IDs and linked lists being better for implementing queues