Which of the following points is/are true about Linked List data structure when it is compared with array
Data Structures Quiz

Quiz
•
Computers
•
University
•
Hard
Jeevitha P
Used 160+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
Arrays have better cache locality that can make them better in terms of performance.
It is easy to insert and delete elements in Linked List
Random access is not allowed in a typical implementation of Linked Lists
The size of array has to be pre-decided, linked lists can change their size any time.
All of the above
2.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What does the following function do for a given Linked List with first node as head?
void fun1(struct node* head)
{
if(head == NULL)
return;
fun1(head->next);
printf("%d ", head->data);
}
Prints all nodes of linked lists
Prints all nodes of linked list in reverse order
Prints alternate nodes of Linked List
Prints alternate nodes in reverse order
3.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
Which of the following is not a disadvantage to the usage of array?
Fixed size
There are chances of wastage of memory space if elements inserted in an array are lesser than the allocated size
Insertion based on position
Accessing elements at specified positions
4.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
Which of the following operations is performed more efficiently by doubly linked list than by singly linked list?
Deleting a node whose location in given
Searching of an unsorted list for a given item
Inverting a node after the node with given location
Traversing a list to process each node
5.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
In linked list each node contain minimum of two fields. One field is data field to store the data second field is?
Pointer to character
Pointer to integer
Pointer to node
Node
6.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
A variant of linked list in which last node of the list points to the first node of the list is?
Singly linked list
Doubly linked list
Circular linked list
7.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What kind of linked list is best to answer question like “What is the item at position n?”
Singly linked list
Doubly linked list
Circular linked list
Array implementation of linked list
Create a free account and access millions of resources
Similar Resources on Quizizz
15 questions
Data Structures Activity - 1

Quiz
•
University
15 questions
User-Defined DS

Quiz
•
University
15 questions
Linked List (Chapter 2)

Quiz
•
University
10 questions
Struktur Data

Quiz
•
University
15 questions
DS MODULE 3 LINKED LIST

Quiz
•
University
15 questions
Quiz Struktur Data

Quiz
•
University
15 questions
DATA STRUCTURES QUIZ

Quiz
•
University
11 questions
Data Structures - Training: Quiz 1

Quiz
•
University
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade