Multiple choice How can we increase the efficiency of the doubly linked list ? By accessing the last element of the list. By accessing any element from the list. By traversing the list in left or right direction from node. None of these Reveal answer Fill a bubble to check yourself C Correct answer Explanation When a linked list is connected doubly, i.e doubly linked list in which each node contains the address of next as well as previous node is very efficient other than we transverse the list from any direction of side of any node.