What boolean expression will be true when cursor refers to the-03677
What boolean expression will be true when cursor refers to the tail node of the list?
This multiple choice question (MCQ) is related to the book/course vu cs301 Data Structures. It can also be found in vu cs301 Mid Term - Quiz No.17.
What boolean expression will be true when cursor refers to the tail node of the list?
(currentNode == null)
(nextNode.data == null)
(currentNode->nextNode == null)
(currentNode.data == 0.0)