New game
Download
Get Academic Plan
Share game
Integrate it into your platform

You can integrate the game into an LMS compatible with LTI 1.1 or LTI 1.3 such as Canvas, Moodle, or Blackboard. This way, the scores will be automatically saved into the platform’s gradebook.
Download
You have exceeded the maximum number of games you can integrate into Google Classroom with your current Plan.

To integrate as many games as you want in Google Classroom, you need an Academic Plan or a Commercial Plan.

You have exceeded the maximum number of games you can integrate into Microsoft Teams with your current Plan.

To integrate as many games as you want in Microsoft Teams, you need an Academic Plan or a Commercial Plan.

Downloading games is an exclusive feature for users with an Academic Plan or a Commercial Plan.

Get your Academic Plan or your Commercial Plan now and start integrating your games into your LMS, website or blog.

If you wish, you can download a demo game here and test its integration:

Linked List

Quiz

Played 6

About this activity

This is a fundamental quiz on Linked List belonging to Linear Data Structure

Created by

India

Download the paper version to play

Make your own free game from our game creator
Compete against your friends to see who gets the best score in this game

Top Games

%
Anonymous
Anonymous
%
%
%
You have exceeded the maximum number of games you can print with your current Plan.

To print as many games as you want, you need an Academic Plan or a Commercial Plan.

Print your game
Linked List
 

Linked ListOnline version

This is a fundamental quiz on Linked List belonging to Linear Data Structure

by Aditi Sen
1

A list can be described as a

Choose one or more answers

2

Value-ordered lists are frequently referred to as

3

Which of the following options are true? Choose two correct options.

Choose one or more answers

4

A list of students, named, 'lstStudents', needs to be ordered numerically by their roll numbers. Which of the following options is NOT TRUE in this regard?

5

Figure : Linear Linked List with 3 nodes Note : Head is a pointer variable containing address of the first node. For each node, first part contains information/value of the node, second part called 'nextpointer field' contains address of next node. What does X signify in the given figure?Choose two correct options.

Choose one or more answers

6

Identify the correct option to create an Empty singly Linked List. Note: A Singly Linked List has a data part and a nextpointer field pointing to next Node.

7

Jay is moving along the pointers of a singly Linked List till he reaches the last element and is using a Stack to store pointers to these individual elements of the list. Then he is printing the contents of the memory locations to which these pointers are pointing. What is Jay trying to achieve here?

8

Identify the applications of Linked Lists from the following.

Choose one or more answers

9

What does the pseudocode given below is trying to achieve? Note: tempNode is any Node , head is a pointer variable pointing to first node of a Linked List. if(head==null): tempNode.nextPointer = NULL; else tempNode.nextPointer=head; head.next=tempNode;

10

What does the pseudocode given below is trying to achieve? Note: tempNode is any Node , head is a pointer variable pointing to first node of a Linked List. tempNode.previousPointer=NULL; if(head==null): tempNode.nextPointer = NULL; else head.next.previousPointer=tempNode; tempNode.nextPointer=head; head.next=tempNode;

11

Given the pseudocode below, choose the options that are NOT correct. while head!=null: temp = head; head = head.next; free(temp); tail = NULL; Note: temp is a temporary variable

Choose one or more answers

Are you sure you want to leave the page?

If you leave the page, you will lose your game progress.