1
GATE CSE 2025 Set 2
MCQ (Single Correct Answer)
+2
-0.67

A meld operation on two instances of a data structure combines them into one single instance of the same data structure. Consider the following data structures:

P: Unsorted doubly linked list with pointers to the head node and tail node of the list.

Q: Min-heap implemented using an array.

R: Binary Search Tree.

Which ONE of the following options gives the worst-case time complexities for meld operation on instances of size $n$ of these data structures?

A
P: $\Theta(1), \mathrm{Q}: \Theta(n), \mathrm{R}: \Theta(n)$
B
$\mathrm{P}: \Theta(1), \mathrm{Q}: \Theta(n \log n), \mathrm{R}: \Theta(n)$
C
$\mathrm{P}: \Theta(n), \mathrm{Q}: \Theta(n \log n), \mathrm{R}: \Theta\left(n^2\right)$
D
$\mathrm{P}: \Theta(1), \mathrm{Q}: \Theta(n), \mathrm{R}: \Theta(n \log n)$
2
GATE CSE 2024 Set 2
MCQ (Single Correct Answer)
+2
-0.66

You are given a set $V$ of distinct integers. A binary search tree $T$ is created by inserting all elements of $V$ one by one, starting with an empty tree. The tree $T$ follows the convention that, at each node, all values stored in the left subtree of the node are smaller than the value stored at the node. You are not aware of the sequence in which these values were inserted into $T$, and you do not have access to $T$.

Which one of the following statements is TRUE?

A

Inorder traversal of $T$ can be determined from $V$

B

Root node of $T$ can be determined from $V$

C

Preorder traversal of $T$ can be determined from $V$

D

Postorder traversal of $T$ can be determined from $V$

3
GATE CSE 2024 Set 1
MCQ (Single Correct Answer)
+2
-0.66

Consider a binary min-heap containing 105 distinct elements. Let k be the index (in the underlying array) of the maximum element stored in the heap. The number of possible values of k is

A

53

B

52

C

27

D

1

4
GATE CSE 2023
MCQ (Single Correct Answer)
+2
-0.67

Let A be a priority queue for maintaining a set of elements. Suppose A is implemented using a max-heap data structure. The operation EXTRACT-MAX(A) extracts and deletes the maximum element from A. The operation INSERT(A, key) inserts a new element key in A. The properties of a max-heap are preserved at the end of each of these operations.

When A contains n elements, which one of the following statements about the worst case running time of these two operations is TRUE?

A
Both EXTRACT-MAX(A) and INSERT(A, key) run in $$O(1)$$.
B
Both EXTRACT-MAX(A) and INSERT(A, key) run in $$O(\log(n))$$.
C
EXTRACT-MAX(A) runs in $$O(1)$$ whereas INSERT(A, key) runs in $$O(n)$$.
D
EXTRACT-MAX(A) runs in $$O(1)$$ whereas INSERT(A, key) runs in $$O(\log(n))$$.
GATE CSE Subjects
Software Engineering
Web Technologies
EXAM MAP
Medical
NEETAIIMS
Graduate Aptitude Test in Engineering
GATE CSEGATE ECEGATE EEGATE MEGATE CEGATE PIGATE IN
Civil Services
UPSC Civil Service
Defence
NDA
Staff Selection Commission
SSC CGL Tier I
CBSE
Class 12