
Linked List Traversal

Quiz
•
Computers
•
Professional Development
•
Hard
Madras Institute of Technology
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
ptr = head
while (ptr!=NULL)
ptr = ptr -> next
Consider the above operation to be performed over the linked list 1->2->3->4->5.What will be the output?
1 2 3 4 5
1 2 3
1 3 5
1 1 1 1 1
Answer explanation
Linked list is traversed entirely
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the time complexity to count the number of elements in the linked list?
O(1)
O(n logn)
O(n)
None of the above
Answer explanation
To count the number of elements, you have to traverse through the entire list, hence complexity is O(n)
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the time complexity to search ith element in the linked list?
O(1)
O(n logn)
O(n)
None of the above
Answer explanation
Searching an ith element in the linked list takes time complexity of O(n)
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
The operation of processing each element in the list is known as
sorting
merging
inserting
traversal
Answer explanation
The operation of processing each element in the list is known as traversal
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Consider the following linked list 12->15->18->21->24
What will be the output of search(3) and search(15) respectively?
-1 and -1
1 and 1
1 and -1
-1 and 1
Answer explanation
Since the element 3 is not the function returns -1 and element 15 is found at position 1 so it returns 1
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following points is/are not true about Linked List data structure when it is compared with an array?
Arrays have better cache locality that can make them better in terms of performance
Access of elements in linked list takes less time than compared to arrays
It is easy to insert and delete elements in Linked List
Random access is not allowed in a typical implementation of Linked Lists
Answer explanation
To access an element in a linked list, we need to traverse every element until we reach the desired element. This will take more time than arrays as arrays provide random access to its elements.
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of following function for start pointing to first node of following linked list?
1 4 6 6 4 1
1 3 5 1 3 5
1 3 5 5 3 1
1 2 3 5
Answer explanation
fun() prints alternate nodes of the given Linked List, first from head to end, and then from end to head.If Linked List has even number of nodes, then skips the last node.
Create a free account and access millions of resources
Similar Resources on Wayground
15 questions
Basic CSS

Quiz
•
Professional Development
10 questions
AppsLab_Q2

Quiz
•
10th Grade - Professi...
15 questions
Code X Trade

Quiz
•
Professional Development
15 questions
HTML Basics

Quiz
•
Professional Development
10 questions
Prophet1

Quiz
•
Professional Development
10 questions
Buổi 1

Quiz
•
Professional Development
15 questions
ВебДизайн3

Quiz
•
Professional Development
10 questions
Linked List Insertion

Quiz
•
Professional Development
Popular Resources on Wayground
50 questions
Trivia 7/25

Quiz
•
12th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
11 questions
Negative Exponents

Quiz
•
7th - 8th Grade
12 questions
Exponent Expressions

Quiz
•
6th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade
20 questions
One Step Equations All Operations

Quiz
•
6th - 7th Grade
18 questions
"A Quilt of a Country"

Quiz
•
9th Grade