Question: private Node firstNode; / / Reference to first node private int numberOfEntries; And the following code: private void displayChain ( Node curr ) { if

private Node firstNode; // Reference to first node private int numberOfEntries;
And the following code:
private void displayChain(Node curr){ if (curr != null){ displayChain(curr.getNext()); System.out.println(curr.getData()); }}
Indicate how the private helper member method would print a non-empty chain
A. In order
B. In reverse order
C. Neither

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!