Java Assessment
What will this program print out to the console when executed?
import java.util.LinkedList;
public class Main {
public static void main(String[] args) {
LinkedList list = new LinkedList<>();
list.add(5);
list.add(1);
list.add(10);
System.out.println(list);
}
Answers
Answered by
0
Answer:
here this your answer
Explanation:
make a brilliant
Attachments:
Similar questions