/* T07Q1. Write Java statements that create a linked list pictured in T07Q1. The Node class is given as in this flie: */ public class Node { private Object item; private Node next; public Node(Object item) { this.item = item; next = null; } public Node(Object item, Node next) { this.item = item; this.next = next; } public Object getItem() { return item; } public void setItem(Object item) { this.item = item; } public Node getNext() { return next; } public void setNext(Node next) { this.next = next; } public static void printList(Node list) { if (list != null) { System.out.println(list.getItem()); printList(list.getNext()); } } }