Linked list Quiz

Linked list Quiz

University

8 Qs

quiz-placeholder

Similar activities

Teste python- Unesp-Jaboticabal

Teste python- Unesp-Jaboticabal

University

10 Qs

pointers and structures

pointers and structures

University

10 Qs

PSSI Chp 1 dan 2

PSSI Chp 1 dan 2

University

12 Qs

Visual Basic Quiz

Visual Basic Quiz

University

10 Qs

Week 4: Recap Java Programming

Week 4: Recap Java Programming

University

10 Qs

Web Designing Quiz-2

Web Designing Quiz-2

University

10 Qs

OS-S1-13-9-22

OS-S1-13-9-22

University

10 Qs

HTML

HTML

University

13 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

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