224k views
2 votes
Building a linked list forward places the new item to be added at the beginning of the linked list.

True

False

User Matteeyah
by
6.6k points

1 Answer

1 vote

Answer:

False

Step-by-step explanation:

When a new item is added to a linked list it gets added to the rear end of the list.

For example if my list is as follows:

A->B->C

Now I want to add D, it will get added as follows:

A->B->C->D

Similarly if I add E, the updated list will become:

A->B->C->D->E

User Paramvir Singh
by
6.2k points