Answered You can hire a professional tutor to get the answer.
Write a java program to perform that following task: 1) Create and populate a LinkedList using a one dimensional array. 2) Add 6 numbers to this...
Write a java program to perform that following task:1) Create and populate a LinkedList using a one dimensional array.2) Add 6 numbers to this LinkedList.3) Search this LinkedList and find the smallest number.4) Display the number you get from step 3.
import java.util.*;public class LinkedListLL{public static void main(String args){int oldArray = {10,12,43,23,2,20};LinkedList ll = new LinkedList();for(int i=0; i<oldArray.length; i++)...