Question: Assuming that the linear linked list is not empty, which of the following is true when the reference variable cur refers to the last node
Assuming that the linear linked list is not empty, which of the following is true when the reference variable cur refers to the last node in the linear linked list?
| A | cur == null | |
| B | head == null | |
| C | cur.next == null | |
| D | head.next == null |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
