Linked List

Linked List

Professional Development

8 Qs

quiz-placeholder

Similar activities

Data Structures-Part A-24.11.2020-Model Exam III

Data Structures-Part A-24.11.2020-Model Exam III

Professional Development

12 Qs

Mid2 Lab Internal PPS

Mid2 Lab Internal PPS

Professional Development

10 Qs

16/08/2021 - Doubly linked list

16/08/2021 - Doubly linked list

Professional Development

5 Qs

Java Collections

Java Collections

Professional Development

10 Qs

Python_DS2

Python_DS2

Professional Development

10 Qs

QUIZ 2 Linked List

QUIZ 2 Linked List

Professional Development

10 Qs

Data Structure

Data Structure

Professional Development

10 Qs

Linked List Deletion

Linked List Deletion

Professional Development

10 Qs

Linked List

Linked List

Assessment

Quiz

Computers

Professional Development

Easy

Created by

Madras Institute of Technology

Used 3+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following can be done with Linked List?

Implementation of Stacks and Queues

Implementation of Binary Trees

Implementation of Data Structures that can simulate Dynamic Arrays

All of the above

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which type of linked list stores the address of the head node in the next pointer of the last node?

Singly Linked List

Doubly Linked List

Hashed List

Circular Linked List

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In which type of linked lists traversals can be performed in both directions?

Singly Linked Lists

Doubly Linked Lists

Circular Linked Lists

None of the above

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements are true?

Random access of elements at a linked list is not possible

Linked lists are not stored in contiguous location

The size of linked list is dynamic and can be changed as needed

All of the above

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which type of linked list has neither beginning nor end?

Singly Linked List

Doubly Linked List

Circular Linked List

None of the above

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not an example of linear data structure?

Graph

Linked list

Array

Stack

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A linked list in which none of the nodes contains a NULL pointer is?

Singly Linked List

Doubly Linked List

Circular Linked List

None of the above

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The type of pointer used to point to the address of the next element in a linked list?

Pointer to character

Pointer to integer

Pointer to node

None of the above