5 What is the main difference between the Doubly-Linked List(DLL) node class and the Singly Linked List(SLL) Node Class?
A The DLL node class has a previous attribute, but the SLL node class does not
B The SLL node class has a next attribute, but the DLL class does not
C The DLL node class stores two data values while the SLL node class stores only one data value
D An instance of the DLL node class can be associated with up to two Linked Lists, but an instance of the SLL node class can only be associated with one Linked List
6 Removing the first node of a Linked List is handled differently than removing other nodes in the Linked List?
A True
B False
7 The time complexity of the size*( method is O(n)
A True
B False
Comments
Leave a comment