DS UNIT-2 TEST-1
Quiz
•
Computers
•
University
•
Hard
PRASHANT ATMAKURI
Used 1+ times
FREE Resource
10 questions
Show all answers
1.
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 alternate nodes of Linked List
Prints all nodes of linked list in reverse order
Prints alternate nodes in reverse order
2.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Which of the following points is/are true about Linked List data structure when it is compared with array?
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 THE ABOVE
3.
MULTIPLE CHOICE QUESTION
5 mins • 1 pt
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?
2 <--> 1 <--> 4 <--> 3 <--> 6 <-->5
6 <--> 5 <--> 4 <--> 3 <--> 2 <--> 1
5 <--> 4 <--> 3 <--> 2 <--> 1 <-->6.
6 <--> 5 <--> 4 <--> 3 <--> 1 <--> 2
4.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Which of the following sorting algorithms can be used to sort a random linked list with minimum time complexity?
Insertion Sort
Quick Sort
Selection Sort
Merge Sort
5.
MULTIPLE CHOICE QUESTION
5 mins • 1 pt
The following function reverse() is supposed to reverse a singly linked list. There is one line missing at the end of the function.
struct node {
int data;
struct node* next; };
/* head_ref is a double pointer which points to head (or start) pointer
of linked list */
static void reverse(struct node** head_ref) {
struct node* prev = NULL;
struct node* current = *head_ref;
struct node* next;
while (current != NULL) {
next = current->next;
current->next = prev;
prev = current;
current = next; }
/*ADD A STATEMENT HERE*/
}
What should be added in place of "/*ADD A STATEMENT HERE*/", so that the function correctly reverses a linked list.
*head_ref = prev;
*head_ref = current;
*head_ref = next;
*head_ref = NULL;
6.
MULTIPLE CHOICE QUESTION
5 mins • 1 pt
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); }
1 4 6 6 4 1
1 3 5 1 3 5
1 3 5 5 3 1
1 2 3 5
7.
MULTIPLE CHOICE QUESTION
5 mins • 1 pt
The following C function takes a simply-linked list as input argument. It modifies the list by moving the last element to the front of the list and returns the modified list. Some part of the code is left blank. Choose the correct alternative to replace the blank line.
typedef struct node {
int value;
struct node *next; }Node;
Node move_to_front(Node head) {
Node p, q;
if ((head == NULL: || (head->next == NULL))
return head;
q = NULL; p = head;
while (p-> next !=NULL) {
q = p;
p = p->next;
}
//FILL THE MISSING CODE HERE //
return head;
}
q = NULL;
p->next = head;
head = p;
q->next = NULL;
p->next = head;
head = p;
q->next = NULL;
head = p;
p->next = head;
head = p;
p->next = q;
q->next = NULL;
Create a free account and access millions of resources
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
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?
Similar Resources on Wayground
10 questions
LINUX MODULE 03 QUIZ
Quiz
•
University
10 questions
DAA Quiz 1
Quiz
•
University
15 questions
Trắc nghiệm kiến thức Java Core - Phần I
Quiz
•
University
10 questions
computer Networks
Quiz
•
University
15 questions
PICMAKER
Quiz
•
University
10 questions
Scratch
Quiz
•
KG - Professional Dev...
11 questions
HTML Postest
Quiz
•
University
10 questions
Dart
Quiz
•
University
Popular Resources on Wayground
20 questions
Halloween Trivia
Quiz
•
6th - 8th Grade
25 questions
Multiplication Facts
Quiz
•
5th Grade
15 questions
Order of Operations
Quiz
•
5th Grade
20 questions
Halloween
Quiz
•
5th Grade
16 questions
Halloween
Quiz
•
3rd Grade
12 questions
It's The Great Pumpkin Charlie Brown
Quiz
•
1st - 5th Grade
20 questions
Possessive Nouns
Quiz
•
5th Grade
10 questions
Halloween Traditions and Origins
Interactive video
•
5th - 10th Grade
Discover more resources for Computers
10 questions
Halloween Movies Trivia
Quiz
•
5th Grade - University
12 questions
Halloween
Quiz
•
3rd Grade - University
5 questions
Using Context Clues
Interactive video
•
4th Grade - University
20 questions
Definite and Indefinite Articles in Spanish (Avancemos)
Quiz
•
8th Grade - University
7 questions
Force and Motion
Interactive video
•
4th Grade - University
14 questions
Eat Healthy,Be Healty
Quiz
•
4th Grade - University
7 questions
History of Halloween: Pagan or Christian?
Interactive video
•
11th Grade - University
7 questions
Renewable and Nonrenewable Resources
Interactive video
•
4th Grade - University
