16.7k views
0 votes
The order of the nodes in a linked list is determined by the data value stored in each node.

True

False

1 Answer

4 votes

Answer:

False

Step-by-step explanation:

Linkedlist is a data structure which is used to store the elements in the node.

The node has two store two data.

first element and second pointer which store the address of the next node.

if their is no next node then it store the NULL.

We can store data in randomly. Therefore, the order of node cannot be determine by data values.

we can use pointers for traversing using the loop because only pointer know the address of the next node, and next noe know the address of next to next node and so on...

Therefore, the answer is False.

User Hhyperion
by
7.7k points