Comment: Re:linked lists still common (Score 1) 672
Knowledge of algorithms, data structures, and when to use them is a difference between a software engineer and a person who knows a programming language. Your answer of "Why would I ever use a linked list?
FYI, when dealing with lists of information, it's not always efficient or possible to use an array. Many languages and libraries implement their functionality using linked lists, so you use them often without even realizing it.