Multiple Choice
Which of the following correctly initializes a doubly linked list in the default constructor?
A) head = NULL;
Back = NULL;
B) head = 0;
Back = 0;
Count = 0;
C) first = 0;
Last = 0;
D) first = NULL;
Last = NULL;
Count = 0;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q2: A linked list must be searched _,starting
Q3: Consider the following code,which deletes all
Q4: The deleteNode operation (if the item to
Q6: Which of the following is a basic
Q8: template <class Type><br>_ doublyLinkedList<Type>::isEmptyList() const<br>{<br> <span
Q10: The _ constructor can make an identical
Q11: What is the output of the following
Q12: In a linked list,the _ operator returns
Q24: It is not possible to create an
Q33: Which of the following statements appears in