Linked List

Linked List

University

10 Qs

quiz-placeholder

Similar activities

Data Structure Quiz

Data Structure Quiz

University - Professional Development

10 Qs

Linked Lists

Linked Lists

University

7 Qs

Data Structure

Data Structure

University

15 Qs

DS MODULE 3 LINKED LIST

DS MODULE 3 LINKED LIST

University

15 Qs

Quiz - Linked list

Quiz - Linked list

University

14 Qs

DSA-QUIZ-2

DSA-QUIZ-2

University

10 Qs

DS QUIZ-1 (unit-1)

DS QUIZ-1 (unit-1)

University

10 Qs

Data Structures Activity - 1

Data Structures Activity - 1

University

15 Qs

Linked List

Linked List

Assessment

Quiz

Computers

University

Hard

Created by

Vrushali Kondhalkar

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a linked list?

A collection of data elements stored in contiguous memory locations.

A sequence of elements where each element points to the next element.

A collection of key-value pairs.

A data structure where elements are stored in a hierarchical manner.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is true about a singly linked list?

Each node has a data part and a reference to the previous node.

Each node has a data part and a reference to the next node.

Each node has a data part and references to both the next and previous nodes.

Nodes are stored in contiguous memory locations

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the time complexity for inserting an element at the beginning of a singly linked list?

O(1)

O(n)

O(log n)

O(n log n)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a doubly linked list, each node contains:

Data and a reference to the next node.

Data and a reference to the previous node.

Data and references to both the next and previous nodes.

Only data

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which operation is faster in a linked list compared to an array?

  • Accessing an element by index

  • Inserting an element at the beginning

  • Inserting an element at the end

Accessing the last element

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the disadvantage of a singly linked list compared to an array?

Fixed size

Slow insertions

Inefficient random access

Higher memory usage

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a circular linked list, how does the last node differ from a singly linked list?

It points to a NULL.

It does not point to any node.

It points back to the first node.

It has a reference to the previous node.

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?