Untitled Quiz

Untitled Quiz

University

11 Qs

quiz-placeholder

Similar activities

DSA Launchpad 2.0

DSA Launchpad 2.0

University

10 Qs

Linked List (Chapter 2)

Linked List (Chapter 2)

University

15 Qs

DS(Part2)-After

DS(Part2)-After

University

11 Qs

DS Quiz1

DS Quiz1

University

10 Qs

Knowledge Knockout[Quiz Round](2nd-4th years)

Knowledge Knockout[Quiz Round](2nd-4th years)

University

15 Qs

DSAA Quiz

DSAA Quiz

University

15 Qs

M3-1

M3-1

University

15 Qs

Analisis Struktur Data

Analisis Struktur Data

10th Grade - University

12 Qs

Untitled Quiz

Untitled Quiz

Assessment

Quiz

Computers

University

Hard

Created by

Menaka Chameli

Used 2+ times

FREE Resource

11 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Which of the following application makes use of a circular linked list?




a)Recursive function calls

b) Undo operation in a text editor

c) Implement Hash Tables

d) Allocating CPU to resources

2.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Which of the following tree data structures is not a balanced binary tree?

a) Splay tree

b) B-tree


c) AVL tree

d) Red-black tree

3.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

What is an AVL tree?

a) a tree which is unbalanced and is a height balanced tree


b) a tree which is balanced and is a height balanced tree

c) a tree with atmost 3 children

d) a tree with three children

4.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

What is the functionality of the following piece of code?

public void display()

{

if(size == 0)

System.out.println("underflow");

else

{

Node current = first; while(current != null)

{

System.out.println(current.getEle()); current = current.getNext();

}

}

}

a) display the list


b) reverse the list

c) reverse the list excluding top-of-the-stack-element

d) display the list excluding top-of-the-stack-element

5.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Which of the following data structure can provide efficient searching of the elements?

a) binary search tree


b) unordered lists

c) 2-3 tree

d) treap

6.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

In simple chaining, what data structure is appropriate?

a) Doubly linked list

b) Circular linked list

c) Singly linked list


d) Binary trees

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the need for a circular queue?

a) easier computations


b) implement LIFO principle in queues

c) effective usage of memory

d) to delete elements based on priority

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?