36.4k views
0 votes
Which statement is false?

A. A linked list is a linear collection of self-referential class objects called nodes connected by reference links.
B. A linked list is appropriate when the number of data elements to be represented in the data structure is unpredictable.
C. The System.LL namespace contains class LinkedList.
D. By convention, the link reference in the last node of a list is set to null to mark the end of the list.

User Athanasia
by
4.6k points

1 Answer

4 votes

Answer:C

Explanationt:

The Linked list is not contained in the system.ll namespace rather it is found in the System.Collections.Generic namespace

User Cobra Libre
by
5.6k points