QUALCOMM Interview Question
305 Interview Reviews |
Back to all QUALCOMM Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Modem Test Engineer at QUALCOMM:
Helpful Question?
Yes |
No
Inappropriate?
0 of 0 people found this helpful
by Interview Candidate:
max := N; {array size: var A : array [1..N] of integer}
repeat
mid := (min+max) div 2;
if x > A[mid] then
min := mid + 1;
else
max := mid - 1;
until (A[mid] = x) or (min > max);