Multiple choice Which among the following is not the correct difference between array and linked lists? Insertion in array is costlier whereas linked list is cheaper. Deletion in array is costlier whereas linked list is cheaper. Traversal in array is costlier whereas linked list is cheaper. Linked list requires more memory than array. Reveal answer Fill a bubble to check yourself C Correct answer Explanation Traversal in an array is O(n) and in a linked list is also O(n). Therefore, stating that traversal in an array is costlier than in a linked list is incorrect.