Question: consider a link list 16-->5-->7-->4-->9-->12-->null, where A points to the node contains 16. what is the output of the following code public int DS1(Node m)

consider a link list 16-->5-->7-->4-->9-->12-->null, where A points to the node contains 16. what is the output of the following code public int DS1(Node m) { if (m.data %3 == 0){ m.data++; return (m.data); else return 2 + DS1(m.next); } .. System.out.println(DS1(A));

8 18 16 10

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 Databases Questions!