What does LinkedList<String> series = new LinkedList<>(); declare?
LinkedList<String> series = new LinkedList<>();
An empty linked list whose element type is String.
String
A single string variable named LinkedList.
LinkedList
A raw list that accepts values of any type without checks.
A fixed-size array of strings.