DS Training QUIZ 1

DS Training QUIZ 1

University

16 Qs

quiz-placeholder

Similar activities

C Language 101

C Language 101

University

18 Qs

Geografia Polski

Geografia Polski

2nd Grade - University

16 Qs

Research Methodology 2021

Research Methodology 2021

University

20 Qs

POP QUIZ - APA Referencing

POP QUIZ - APA Referencing

University

20 Qs

Música

Música

University

11 Qs

8085 INSTRUCTION - DATA TRANSFER AND ARITHMETIC

8085 INSTRUCTION - DATA TRANSFER AND ARITHMETIC

University

15 Qs

Quiz 2 BCD 1033

Quiz 2 BCD 1033

University

15 Qs

Evaluación económica y financiera

Evaluación económica y financiera

University

15 Qs

DS Training QUIZ 1

DS Training QUIZ 1

Assessment

Quiz

Education

University

Practice Problem

Medium

Created by

Christina Magneta S

Used 3+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

16 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 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

2.

MULTIPLE CHOICE QUESTION

30 sec • 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

5 <--> 4 <--> 3 <--> 2 <--> 1 <-->6.

6 <--> 5 <--> 4 <--> 3 <--> 2 <--> 1.

6 <--> 5 <--> 4 <--> 3 <--> 1 <--> 2

3.

MULTIPLE CHOICE QUESTION

30 sec • 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

Heap Sort

Merge Sort

4.

MULTIPLE CHOICE QUESTION

30 sec • 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 2 3 5

1 3 5 5 3 1

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the worst case, the number of comparisons needed to search a singly linked list of length n for a given element is (GATE CS 2002)

log(2*n)

n/2

log(2*n) -1

n

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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? (GATE CS 2004)

union

membership

cardinality

union, intersection

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the optimal time complexity to count the number of nodes in a linked list?

O(n)

O(1)

O(log n)

O(n log n)

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?