What does the main() method of the below code print? =======…
What does the main() method of the below code print? ====================================================import java.util.ArrayList;import java.util.List;import java.util.ListIterator;public class TestIterator { public TestIterator() { ArrayList list = new ArrayList(); for (int i=1; i
Read Details