Solved

Template ≪class Type>
____ DoublyLinkedList<Type>::isEmptyList() Const
\quad Return (First == NULL);
}
-Consider the Statements Above

Question 16

Multiple Choice

template <class Type>
____ doublyLinkedList<Type>::isEmptyList() const
{
\quad return (first == NULL) ;
}
-Consider the statements above. The list is empty if the pointer first is ____.


A) NULL
B) 0
C) last
D) next

Correct Answer:

verifed

Verified

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

Related Questions