GATE CS 2016 Set 1 — Question 44
Go beyond PYQs with Success TrackerAI-powered personalised practice and doubt support. Unlimited practice on eligible plans; AI usage limits apply.MCQ+2 / -0.67EasyArray Operations (1D, 2D)Arrays & StringsProgramming & Data Structures
Programming & Data Structures → Arrays & Strings → Array Operations (1D, 2D)
Last updated
Question
The following function computes the maximum value contained in an integer array The missing loop condition is
p[] of size n (n >= 1).int max(int *p, int n) {
int a=0, b=n-1;
while (__________) {
if (p[a] <= p[b]) { a = a+1; }
else { b = b-1; }
}
return p[a];
}
Correct answer
(D) b != a
Solution
The function uses a two-pointer approach to find the maximum element in the array.
1.Initialization:
a points to the start (0) and b points to the end (n-1) of the array.2.Logic: In each iteration, we compare
p[a] and p[b].- If
p[a] <= p[b], thenp[a]cannot be the unique maximum (sincep[b]is greater or equal), so we incrementato discard it. - If
p[a] > p[b], thenp[b]cannot be the maximum, so we decrementbto discard it.
a and b are distinct indices. When a == b, only one element remains, which must be the maximum.Therefore, the loop condition should be b != a (or a < b).Checking the options:- (A)
a != n: Incorrect,astops when it meetsb. - (B)
b != 0: Incorrect. - (C)
b > (a + 1): This would stop whenbandaare adjacent, leaving two elements unchecked against each other. - (D)
b != a: Correct. The loop runs untilaandbconverge to the single maximum element.
Continue learning with Success Tracker
A step still unclear? Work through it with support
Use Success Tracker to ask about the reasoning, then try another GATE CS question to check your understanding.
AI-powered practice· Unlimited practice on eligible plans
- PYQs with solutions
- Attempt available previous-year questions, then compare your reasoning with the worked solution. Coverage varies by stream.
- Practice that adapts
- Choose a topic, work on weaker areas and bookmark questions to revisit. Your attempts feed your progress tracking.
- AI doubt support
- Ask follow-up questions about a step or concept while practising, instead of stopping at the final answer.
Unlimited practice is available on eligible plans. Free practice and AI usage have limits; check the current plan allowances before choosing.
This page stays readable without an account. AI responses can be wrong; check them against the solution and source material.
More questions on Arrays & Strings
2026 Set 2 Q12The set T represents various traversals over binary tree. The set S represents the order of…2026 Set 2 Q19Consider the following three ANSI-C programs, P1, P2, and P3. P1 [code] P2 [code] **P3**…2026 Set 1 Q23Let be an odd number greater than 100. Consider a binary minheap with elements stored in an…2026 Set 1 Q24Consider a hash table that is initially empty. The hash table is maintained…2026 Set 1 Q27Consider the following C statements: Which of the following options is/are correct? [figure]