Linked List

Linked List

Professional Development

8 Qs

quiz-placeholder

Similar activities

JMS Fundamentals

JMS Fundamentals

Professional Development

11 Qs

Java Collections

Java Collections

Professional Development

10 Qs

Mid2 Lab Internal PPS

Mid2 Lab Internal PPS

Professional Development

10 Qs

Data Structures-Part A-24.11.2020-Model Exam III

Data Structures-Part A-24.11.2020-Model Exam III

Professional Development

12 Qs

Tree datastructure

Tree datastructure

University - Professional Development

13 Qs

C++ Pointers and Arrays

C++ Pointers and Arrays

University - Professional Development

10 Qs

GO4! Quiz Zeriuz Fundamental GO

GO4! Quiz Zeriuz Fundamental GO

Professional Development

10 Qs

Android Fundamentals - Day 1: Java

Android Fundamentals - Day 1: Java

University - 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

AI

Enhance your content

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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