Answer :
Answer:
a. ArrayList years
Explanation:
Required
Complete the code segment
The programming question is about Java programming language.
In java, the syntax to declare an ArrayList of no specific datatype is:
ArrayList [List-name] = new ArrayList();
From the question, the name of the ArrayList is years.
So, the syntax when implemented is:
ArrayList years = new ArrayList();
So, the comment /*missing code*/ should be replaced with: ArrayList years
The option that can be used to replace /* missing code */ so that the statement compiles without error is;
A: ArrayList years
This question deals with programming language in Java.
- Now, from the question, we are dealing with an ArrayList and In java, the syntax that is used to declare an ArrayList of no specific data type is given as;
ArrayList [Lists name] = new ArrayList();
Now, in the question the list name is given as "years". Thus;
The correct statement to replace /* missing code */ so without errors is;
ArrayList years.
Read more about Java syntax at; https://brainly.com/question/18257856