Linked list Quiz

Linked list Quiz

University

8 Qs

quiz-placeholder

Similar activities

Quiz on Basics of C

Quiz on Basics of C

University

10 Qs

Lenguaje Perl

Lenguaje Perl

University

10 Qs

Chapter 2 Python

Chapter 2 Python

8th Grade - University

13 Qs

استعني علي الشقا بالله

استعني علي الشقا بالله

University

10 Qs

Javascript

Javascript

University

12 Qs

gta san adres

gta san adres

KG - Professional Development

10 Qs

Què has après sobre el web ?

Què has après sobre el web ?

University

10 Qs

C#. Знакомство с ООП и WindowsForms

C#. Знакомство с ООП и WindowsForms

1st Grade - Professional Development

11 Qs

Linked list Quiz

Linked list Quiz

Assessment

Quiz

Computers

University

Medium

Created by

sukanya jerusalem

Used 125+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

The situation when in a linked list Head==NULL

is

Full

Empty

Half full

saturated

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Each node in a linked list has two

pairs of ………….. and ……………….

Link field and information field

Link field and avail field

Avail field and information field

Address field and link field

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

In the above image what will be printed when Head->next->data?

83

9

27

Error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

In the above image what will be printed when Head->next->next->data is displayed?

83

9

27

Error

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the condition to check whether linked

list is empty

Head->next==Null

Head->next->next==Null

temp->next==Null

Head==Null

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which node’s data will be printed when


“temp =temp->next” is executed 3 times and the initial value of temp is temp=head

Null

9

27

46

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

how many times should


“temp =temp->next” be executed in the image to get the value of "Null" when the initial value of temp is temp=head

1

2

3

4

8.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

Head->next->next will print what value