Hard
----------------------------------------------
Answer:
False
Explanation:
Transmission Control Protocol (TCP) is a connection-oriented communications protocol that facilitates the exchange of messages between computing devices in a network and it is also reliable.
It helps because its a faster way to copy a link .
Answer:
False
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