
Data structure- II CSBS
Authored by vaishali mahalingan

AI Actions
Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...
Content View
Student View
16 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
1. 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);
}
a) Prints all nodes of linked lists
b) Prints all nodes of linked list in reverse order
c) Prints alternate nodes of Linked List
d) Prints alternate nodes in reverse order
2.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
2. Consider the following function that takes reference to head of a Doubly Linked List as parameter. Assume that a node of doubly linked list has previous pointer as prev and next pointer as next.
void fun(struct node **head_ref)
{
struct node *temp = NULL;
struct node current = head_ref;
while (current != NULL)
{
temp = current->prev;
current->prev = current->next;
current->next = temp;
current = current->prev;
}
if(temp != NULL )
*head_ref = temp->prev;
}
Assume that reference of head of following doubly linked list is passed to above function 1 <--> 2 <--> 3 <--> 4 <--> 5 <-->6. What should be the modified linked list after the function call?
a) 2 <--> 1 <--> 4 <--> 3 <--> 6 <-->5
b) 5 <--> 4 <--> 3 <--> 2 <--> 1 <-->6
c) 6 <--> 5 <--> 4 <--> 3 <--> 2 <--> 1
d) 6 <--> 5 <--> 4 <--> 3 <--> 1 <--> 2
3.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
3. Which of the following sorting algorithms can be used to sort a random linked list with minimum time complexity?
a) Insertion Sort
b) Quick Sort
c) Heap Sort
d) Merge Sort
4.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
4. What is the output of following function in which start is pointing to the first node of the following linked list 1->2->3->4->5->6 ?
void fun(struct node* start)
{
if(start == NULL)
return;
printf("%d ", start->data);
if(start->next != NULL )
fun(start->next->next);
printf("%d ", start->data);
}
a) 1 4 6 6 4 1
b) 1 3 5 1 3 5
c) 1 2 3 5
d) 1 3 5 5 3 1
5.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
5. In the worst case, the number of comparisons needed to search a singly linked list of length n for a given element is
a) log(2*n)
b) n/2
c) log(2*n) -1
d) n
6.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
6. Suppose each set is represented as a linked list with elements in arbitrary order. Which of the operations among union, intersection, membership, cardinality will be the slowest?
a) union
b) membership
c) cardinality
d) union, intersection
7.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
7. What is the optimal time complexity to count the number of nodes in a linked list?
a) O(n)
b) O(1)
c) O(log n)
d) O(n log n)
Access all questions and much more by creating a free account
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple
Others
Already have an account?
Similar Resources on Wayground
20 questions
SECRET SANTA
Quiz
•
KG - University
15 questions
present simple
Quiz
•
1st Grade
15 questions
Technical Drawings
Quiz
•
12th Grade
15 questions
Git and Git Hub fundamentals
Quiz
•
KG - University
20 questions
Chapter 5
Quiz
•
KG - University
17 questions
International's Quiz
Quiz
•
KG - University
Popular Resources on Wayground
15 questions
Fractions on a Number Line
Quiz
•
3rd Grade
20 questions
Equivalent Fractions
Quiz
•
3rd Grade
25 questions
Multiplication Facts
Quiz
•
5th Grade
54 questions
Analyzing Line Graphs & Tables
Quiz
•
4th Grade
22 questions
fractions
Quiz
•
3rd Grade
20 questions
Main Idea and Details
Quiz
•
5th Grade
20 questions
Context Clues
Quiz
•
6th Grade
15 questions
Equivalent Fractions
Quiz
•
4th Grade
Discover more resources for
15 questions
Fractions on a Number Line
Quiz
•
3rd Grade
20 questions
Equivalent Fractions
Quiz
•
3rd Grade
25 questions
Multiplication Facts
Quiz
•
5th Grade
54 questions
Analyzing Line Graphs & Tables
Quiz
•
4th Grade
22 questions
fractions
Quiz
•
3rd Grade
20 questions
Main Idea and Details
Quiz
•
5th Grade
20 questions
Context Clues
Quiz
•
6th Grade
15 questions
Equivalent Fractions
Quiz
•
4th Grade