Linked List Quiz

Linked List Quiz

University

10 Qs

quiz-placeholder

Similar activities

Struktur Data dan Algoritma

Struktur Data dan Algoritma

University

10 Qs

Python for loop/lists

Python for loop/lists

9th Grade - University

15 Qs

Quiz sur Tailwind CSS

Quiz sur Tailwind CSS

University

11 Qs

Struktur Data dan Algoritma

Struktur Data dan Algoritma

11th Grade - University

15 Qs

File Management Quiz

File Management Quiz

University

14 Qs

MP Pertemuan 03

MP Pertemuan 03

University

10 Qs

Quiz on Tree

Quiz on Tree

University

10 Qs

Uji Pengetahuan Kecerdasan Artifisial

Uji Pengetahuan Kecerdasan Artifisial

10th Grade - University

10 Qs

Linked List Quiz

Linked List Quiz

Assessment

Quiz

Information Technology (IT)

University

Easy

Created by

Aiza Najihah Bt Razaman UPTM

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a singly linked list, each node contains:

Only data

Data and pointer to the next node

Data and pointers to next and previous nodes

Only a reference to the next node

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a doubly linked list, each node has:

One reference only

Two references: previous and next

Three references: previous, next, and head

No references

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a circular linked list, the link field of the last node contains:

NULL

Address of the first node

Address of the last node itself

Random address

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Main limitation of a singly linked list is:

Cannot store strings

Cannot traverse backward

Cannot insert nodes at all

Needs more memory than arrays

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What Java LinkedList method is used to insert an element at the beginning?

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What Java LinkedList method removes the last element?

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What will be the output of this code?

LinkedList list = new LinkedList<>();

list.add("Paul"); list.add("John");

list.add("Tina");

System.out.println(list.getFirst());

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?