Question: JAVA CODING: 3. (15 marks) Forward and Backward display of a sequence of numbers For this problem, you will need to use .asList() to build
JAVA CODING:

3. (15 marks) Forward and Backward display of a sequence of numbers For this problem, you will need to use .asList() to build an an ArrayList from an array of integers. You will need to demonstrate the use of iterator) (or listlterator)) to traverse in the forward and backward directions: Build two ArrayList (Li1, and Li2)with two sets of integers - (5, 6,7, 8,9) - Your display result should be similar to the following: (next page) 112. [5, 6, 7, 8, 9] 1i1: forward order 0 1 2 3 4 1i1: Reverse order 4 3 2 1 0 1i2: forward order 5 6 7 8 9 1i2 reverse order 9 87 6 5 Display the orginial lists 1i2: [5, 6, 7, 8, 9]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
