Question:medium

Match List I with List II
LIST ILIST II
C. Deletion operationIV. Dequeue
A. Insertion in a queue atI. FRONT
B. Deletion in a queue atIII. REAR
D. Insertion operationII. Enqueue

Show Hint

In a queue, elements are inserted from the rear (enqueue) and removed from the front (dequeue), which is characteristic of FIFO (First In, First Out) data structure.
Updated On: Feb 13, 2026
  • A-II, B-I, C-III, D-IV
  • A-II, B-I, C-IV, D-III
  • A-III, B-IV, C-I, D-II
  • A-III, B-I, C-IV, D-II
Show Solution

The Correct Option is B

Solution and Explanation

Insertion in a queue at FRONT corresponds to Enqueue (A–II). This refers to adding an element at the front of the queue (as in a deque).

Deletion in a queue at FRONT corresponds to Dequeue (B–I), which removes an element from the front of the queue.

Deletion operation at the rear is associated with Rear (C–IV), since deletion can occur from the rear in certain queue implementations such as a deque.

Insertion operation is associated with Rear (D–III), because in a standard queue, insertion (enqueue) typically occurs at the rear end.

Therefore, the correct matching is: A–II, B–I, C–IV, D–III.

Was this answer helpful?
0


Questions Asked in CUET (UG) exam