When we are try to instantiate java.util.LinkedList, It is suggesting LinkedList
Same way, When we are try to instantiate java.util.List, It is suggesting ArrayList
But, When we are try to instantiate java.util.List, It is suggesting only ArrayList and LinkedList is not an option.
Actually It is not a problem and manually we are able to do like
List<String> linkedList = new LinkedList<>();
But What my question is there any specific reason behind this?