Solved

Which of the Following Correctly Initializes a Doubly Linked List

Question 7

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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions