Computer Science, asked by sudharshan1701, 20 days ago

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 bhakarepranjali
0

Answer:

here this your answer

Explanation:

make a brilliant

Attachments:
Similar questions