Question: 1) (5 points) What is the difference between an Array and ArrayList? 2) (5 points) What is the import command for Array List? Hint: java.util.Scanner
1) (5 points) What is the difference between an Array and ArrayList? 2) (5 points) What is the import command for Array List? Hint: java.util.Scanner 3) (5 points) What is the difference between ArrayList and a LinkedList? Programming Task (85 points): For this program you will create an ArrayList of 20 random numbers between 1 and 50 These random number should be created using Java's Random Class generator. Once this ArrayList of 20 random numbers is created your program should display this array to the user then prompt the user to enter an integer n (0-19) and show the nth element of the ArrayList to the user. After, it should then prompt the user to enter an element and remove the element the user enters. If n is out of bounds for the first or second user input your program should output an error message and terminate, otherwise it should display the value of the nth element. Key Notes READ INSTRUCTIONS COMPLETELY!!! READ COMPLETELY!!! *Don't forget to import necessary classes Use loop to populate ArrayList with random integers *If else statements can help with validating user input Look at sample code of how your console should look when the code is ran YOUR TEXTBOOK CHAPTERS Below are some examples of how your code should look and react to user input when completed and ran: xample 37, 27, 22, 45, 11, 1, 35, 14, 4, 28, 26, 31, 33, 34, 48, 11, 17, 27, 26, 27] Enter a nueber from e to 19: 19 The value of element 19 is 27 Please enter the element you Your new array is [37, 27, 22, 45, 11, 18, 35, 14, 4, 28, 26, 31, 33, 34, 48, 11, 17, 27, 26] want to remove: 19
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
