Linked List Quiz

Linked List Quiz

University

10 Qs

quiz-placeholder

Similar activities

Quiz Marketing Digital

Quiz Marketing Digital

9th Grade - University

15 Qs

Unit: IV MongoDB and Node.js Quiz

Unit: IV MongoDB and Node.js Quiz

12th Grade - University

14 Qs

Digital Marketing and SEO Quiz

Digital Marketing and SEO Quiz

University

10 Qs

DSA (Quiz 1) Arrays and Linked Lists

DSA (Quiz 1) Arrays and Linked Lists

University

15 Qs

Exploring Network Topologies

Exploring Network Topologies

12th Grade - University

6 Qs

Hash Table

Hash Table

University

9 Qs

IPv4 vs IPv6

IPv4 vs IPv6

University

7 Qs

Python_Quiz_1

Python_Quiz_1

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?