Question: data structure python (9) Assume a Deque instance is not empty nor full. The following function can be used in a Deque class with the
(9) Assume a Deque instance is not empty nor full. The following function can be used in a Deque class with the target and name of: [2 pt] A. add_first B. delete_first C. delete_last . add_last (10) Related to the Singly Linked List, the number of the incorrect line in terms of its order in the following algorithm is: [2 pt] 12345defaddfirst(Lst,element):newest=Node(element)Lst.head=newestnewest.next=Lst.headLst.size=Lst.size+1 B. Tail pointer points to the same location as the head pointer. C. All operations are done at the head. D. Tail may lead to fatal errors. (12) An empty doubly linked list has: [2 pt] A. Two special nodes B. No nodes at all C. Only a trailer node D. Only a header node (13) A node in a doubly linked list has the following: [2 pt] A. Four references, 2 for next node and 2 previous node. B. Three references, to the previous \& next nodes and to the element. C. Two references, to the header and to the trailer. D. One reference only to the element
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
