Créer jeu
Télécharger
Obtenir Plan Académique
Partager le jeu
Intégrez-le à votre plateforme

Vous pouvez intégrer le jeu dans un LMS compatible avec LTI 1.1 ou LTI 1.3 comme Canvas, Moodle ou Blackboard. Les scores seront ainsi automatiquement enregistrés dans le carnet de notes de la plateforme.
Télécharger
Vous avez dépassé le nombre maximum de jeux que vous pouvez intégrer à Google Classroom avec votre Plan actuel.

Pour intégrer autant de jeux que vous le souhaitez dans Google Classroom, vous avez besoin d’un Plan Académique ou un Plan Commerciel.

Vous avez dépassé le nombre maximum de jeux que vous pouvez intégrer à Microsoft Teams avec votre Plan actuel.

Pour intégrer autant de jeux que vous le souhaitez dans Microsoft Teams, vous avez besoin d’un Plan Académique ou un Plan Commerciel.

Le téléchargement du jeu est une fonctionnalité exclusive pour les utilisateurs avec un Plan Académique ou un Plan Commercial.

Obtenez votre Plan Académique ou Plan Commercial dès maintenant et commencez à intégrer vos jeux dans votre LMS, votre site Web ou votre blog.

Si vous le souhaitez, vous pouvez télécharger une jeu de test ici et tester son intégration:

Linked List

Test

Parties jouées 6

À propos de cette activité

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

Créé par

India

Téléchargez la version pour jouer sur papier

Créez votre propre jeu gratuite à partir de notre créateur de jeu
Affrontez vos amis pour voir qui obtient le meilleur score dans ce jeu

Top Jeux

%
Anonyme
Anonyme
%
%
%
Vous avez dépassé le nombre maximum de jeux que vous pouvez imprimer avec votre Plan actuel.

Pour imprimer autant de jeux que vous le souhaitez, vous avez besoin d’un Plan Académique ou un Plan Commerciel.

Imprimez votre jeu
Linked List
 

Linked ListVersion en ligne

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

par 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

Voulez-vous vraiment quitter la page ?

En quittant la page, vous perdrez la progression du jeu.