Data Structures Prelimes

Data Structures Prelimes

University

16 Qs

quiz-placeholder

Similar activities

The year 2021

The year 2021

7th Grade - University

11 Qs

Cars 2020

Cars 2020

6th Grade - University

12 Qs

TEDx Orientation Quiz

TEDx Orientation Quiz

University

20 Qs

Revisão Saúde Coletiva

Revisão Saúde Coletiva

University

14 Qs

Magajastra

Magajastra

University

20 Qs

QUIZ MSKI KPPN TEGAL

QUIZ MSKI KPPN TEGAL

6th Grade - University

13 Qs

Pengelolaan Asuransi_BIP CS Unit

Pengelolaan Asuransi_BIP CS Unit

University

18 Qs

Mobilities and Information Technology - Revision 1

Mobilities and Information Technology - Revision 1

University

14 Qs

Data Structures Prelimes

Data Structures Prelimes

Assessment

Quiz

Other

University

Hard

Created by

Summia H

Used 1+ 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

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

2.

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

3.

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

4.

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

5.

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)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following algorithms is not feasible to implement in a linked list?

Insertion Sort

Quick Sort

Heap Sort

Binary Search

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the time complexity to insert an element to the front of a LinkedList(head pointer given)?

O(n)

O(1)

O(log n)

O(n log n)

Create a free account and access millions of resources

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?