The node in a single linked list can reference the previous node in the linked list.

Skill/Topic: Linked List
A) True
B) False
Explanation: A single linked list is a linked list consisting of nodes that have only the next element and not the previous element. This links the node to only the next node in the linked list. There is no way for the node to reference the previous node in the linked list

Showing Answers 1 - 7 of 7 Answers

priyanka kapoor

  • Aug 25th, 2006
 

False. In single list, A node can only point to next node, it has address for next node. if a node contains refrence to both prev and next elemnts, then it surely is from doubly linked list

  Was this answer useful?  Yes

Vikram.N

  • Sep 3rd, 2007
 

True: Only in the case of a circular linked list with two elements!

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions