Linked List

Linked List

University

5 Qs

quiz-placeholder

Similar activities

Struktur Data

Struktur Data

University

10 Qs

Stack

Stack

University

10 Qs

Pertemuan 1 Struktur Data

Pertemuan 1 Struktur Data

University

10 Qs

Understanding Singly Linked Lists

Understanding Singly Linked Lists

University

10 Qs

DDT1B_Pre-test_080322

DDT1B_Pre-test_080322

University

10 Qs

Easy Round - WMSU ICpeP Quizbowl 2021

Easy Round - WMSU ICpeP Quizbowl 2021

University

10 Qs

Array, Linked list, Stack and Queue

Array, Linked list, Stack and Queue

University

8 Qs

Quiz 1

Quiz 1

University

10 Qs

Linked List

Linked List

Assessment

Quiz

Computers

University

Hard

Created by

Umadevi N

Used 1+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

Singly Linked List

Doubly Linked List

Circular Linked List

None of these

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A linear collection of data elements where the linear node is given by means of pointer is called?

linked list

node list

primitive list

None of these

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the time complexity to count the number of elements in the linked list?

O(1)

O(n)

O(logn)

None of the mentioned

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In circular linked list, insertion of node requires modification of?

One pointer

Two pointer

Three pointer

None

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A variant of the linked list in which none of the node contains NULL pointer is?

Singly linked list

Doubly linked list

Circular linked list

None