Linked List

Linked List

University

9 Qs

quiz-placeholder

Similar activities

HTML Quiz

HTML Quiz

University

10 Qs

HTML Quiz

HTML Quiz

9th Grade - Professional Development

10 Qs

Quiz 01

Quiz 01

University

13 Qs

Quiz #3

Quiz #3

University

9 Qs

Data Structures

Data Structures

University

10 Qs

Coding Challenge Round 1

Coding Challenge Round 1

University

10 Qs

FINALS

FINALS

University

10 Qs

Pertemuan 9

Pertemuan 9

University

10 Qs

Linked List

Linked List

Assessment

Quiz

Other

University

Medium

Created by

Roque Day

Used 33+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Linked list can be visualized as a chain of nodes, where every node points to the next node.

TRUE

FALSE

2.

FILL IN THE BLANK QUESTION

30 sec • 3 pts

Each link of linked list can store a data called an _______.

3.

MULTIPLE CHOICE QUESTION

30 sec • 3 pts

Is a sequence of data structures, which are connected together via links.

Link

Linked List

Next

First

4.

FILL IN THE BLANK QUESTION

30 sec • 3 pts

Each link of a linked list contains a link to the next link called ____.

5.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

A type of linked list which items can be navigated forward and backward.

Singly Linked List

Circular Linked List

Doubly Linked List

6.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

A type of linked list in which Item navigation is forward only.

Singly Linked List

Circular Linked List

Doubly Linked List

7.

FILL IN THE BLANK QUESTION

30 sec • 3 pts

A Linked List contains the connection link to the first link called _____.

8.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

A type of linked list in which the last item contains a link to the first element as next and the first element has a link to the last element as the previous.

Singly Linked List

Circular Linked List

Doubly Linked List

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Doubly Linked List is a variation of a Linked list in which navigation is possible in both ways, either forward and backward easily as compared to a Single Linked List.

TRUE

FALSE