Search Header Logo

Data Structures and Algorithm

Authored by Gajendra Acharya

Computers

University

Used 3+ times

Data Structures and Algorithm
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 10 pts

Media Image

What is a data structure?

A programming language

A collection of algorithms

A way to store and organize data

A type of computer hardware

Answer explanation

A data structure is specifically defined as a way to store and organize data efficiently, making it easier to access and manipulate. The other options do not accurately describe what a data structure is.

2.

MULTIPLE CHOICE QUESTION

20 sec • 10 pts

Which data structure is used for implementing recursion?

Fibonacci

Function Calls

Stack

Queue

Answer explanation

Recursion relies on the stack data structure to keep track of function calls. Each recursive call is pushed onto the stack, and when a base case is reached, the calls are popped off, allowing the program to return to previous states.

3.

MULTIPLE CHOICE QUESTION

20 sec • 10 pts

The data structure required for Breadth First Traversal on a graph is?

Array

Stack

Tree

Queue

Answer explanation

Breadth First Traversal uses a Queue to explore nodes level by level. Nodes are enqueued as they are discovered and dequeued for processing, ensuring that all nodes at the current level are processed before moving to the next.

4.

MULTIPLE CHOICE QUESTION

20 sec • 10 pts

What is an AVL tree?

a tree which is unbalanced and is a height balanced tree

a tree which is balanced and is a height balanced tree

a tree with atmost 3 children

a tree with three children

Answer explanation

An AVL tree is a type of binary search tree that maintains balance by ensuring the heights of the two child subtrees of any node differ by no more than one. This makes it a height-balanced tree, confirming the correct choice.

5.

MULTIPLE CHOICE QUESTION

20 sec • 10 pts

Media Image

what is a dequeue?

a queue implemented with both singly and doubly linked lists

a queue with insert/delete defined for front side of the queue

a queue with insert/delete defined for both front and rear end of the queue

a queue implemented with a doubly linked list

Answer explanation

A dequeue, or double-ended queue, allows insertion and deletion of elements from both the front and rear ends, making it more versatile than a standard queue, which only allows these operations at one end.

6.

MULTIPLE CHOICE QUESTION

20 sec • 10 pts

Media Image

What is the time complexity of Bubble Sort in the average case?

o(n2)

o(n log n)

o(n3)

o(n)

Answer explanation

The average case time complexity of Bubble Sort is O(n²) because it involves nested loops, where each element is compared with every other element, leading to quadratic growth in the number of comparisons as the input size increases.

7.

MULTIPLE CHOICE QUESTION

20 sec • 10 pts

Media Image

algorithm to find the shortest path from a source node to all other nodes in a graph with non-negative weights?

Breadth-First Search (BFS)

Depth-First Search (DFS)

Bellman-Ford Algorithm

Dijkstra's Algorithm

Answer explanation

Dijkstra's Algorithm is specifically designed to find the shortest path in graphs with non-negative weights, making it the correct choice. BFS and DFS do not account for weights, while Bellman-Ford handles negative weights.

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?

Discover more resources for Computers