MCQ IN COMPUTER SCIENCE & ENGINEERING

COMPUTER SCIENCE AND ENGINEERING

DATA STRUCTURES

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Two of a few standard operations that can be performed on a queue are (select two)
A
enqueue
B
isempty
C
insert
D
split
Explanation: 

Detailed explanation-1: -Basic Operations of Queue Enqueue: Add an element to the end of the queue. Dequeue: Remove an element from the front of the queue.

Detailed explanation-2: -Queue is said to be empty when the value of front is at-1 or the value of front becomes greater than rear (front > rear).

There is 1 question to complete.