Count the number of TRUE statements about Linked Lists.
- Time complexity of deleting the last node in a Linked List is O(n).
- Time complexity of adding a new node in the beginning in a Linked List is O(1).
- Linked Lists store elements in contiguous memory locations.
- Time complexity of adding a new node after a specific node in a Linked List is O(n).
- Linked Lists are dynamic in nature because its size can be increased at runtime.
- Time complexity of deleting a node in the beginning of a Linked List is O(n).
- Time complexity of deleting a node after a specific node in a Linked List is O(n).
- Binary search is not preferred on Linked List because the it is done in O(n) time.
Enter numerical value using the virtual keypad. Round off where necessary.