CUET-PG SERIES
Computer-science

Linked Lists

1 previous year questions.

Volume: 1 Ques
Yield: Medium

High-Yield Trend

1
2025

Chapter Questions
1 MCQs

01
PYQ 2025
medium
computer-science ID: cuet-pg-

The statements of pseudocode for searching the first element with key k in the linked list L are given below. Arrange them in the correct order.
(A) while (x != NIL and x.key != k)
(B) x = L.head
(C) x = x.next
(D) return x

1
(B), (A), (C), (D)
2
(A), (B), (C), (D)
3
(C), (B), (A), (D)
4
(C), (B), (D), (A)