Linked List

Linked List

University

9 Qs

quiz-placeholder

Similar activities

Exploring C++, Data Structures, and HTML

Exploring C++, Data Structures, and HTML

12th Grade - University

10 Qs

Pertemuan 5

Pertemuan 5

University

10 Qs

Pertemuan 4

Pertemuan 4

University

11 Qs

Coding Challenge Round 1

Coding Challenge Round 1

University

10 Qs

"•Latar Belakang Manajemen Memori •Swap dan Alokasi Memori Berda

"•Latar Belakang Manajemen Memori •Swap dan Alokasi Memori Berda

University

10 Qs

Pertemuan 9

Pertemuan 9

University

10 Qs

LinkList

LinkList

University

5 Qs

Stack and Queue

Stack and Queue

University

13 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