wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

DS

Total questions: 8

Worksheet time: 8mins

Name
Class
Date
1.

Which of these is not an application of linked list?

a)

To implement file systems

b)

For separate chaining in hash-tables

c)

To implement non-binary trees

d)

Random Access of elements

2.

A variant of linked list in which last node of the list points to the first node of the list is?

a)

Singly linked list

b)

Doubly linked list

c)

Circular linked list

d)

Multiply linked list

3.

Linked lists are not suitable to for the implementation of?

a)

Insertion sort

b)

Radix sort

c)

Polynomial manipulation

d)

Binary search

4.

In doubly linked lists, traversal can be performed?

a)

Only in forward direction

b)

Only in reverse direction

c)

In both directions

d)

None

5.

Generally collection of Nodes is called as __________.

a)

Pointer

b)

Linked List

c)

Stack

d)

Heap

6.

Which of the following is not a type of Linked List ?

a)

Singly Linked List

b)

Doubly Linked List

c)

Hybrid Linked List

d)

Circular Linked List

7.

Linked list is generally considered as an example of _________ type of memory allocation.

a)

Static

b)

Dynamic

c)

Compile Time

d)

None of these

8.

Each Node contain minimum two fields one field called data field to store data. Another field is of type _________.

a)

Pointer to Node

b)

Pointer to an Integer

c)

Pointer to Character

d)

Pointer to Class