Computer Science Engineering (CSE) Exam  >  Computer Science Engineering (CSE) Questions  >  Consider the following C program that attempt... Start Learning for Free
Consider the following C program that attempts to locate an element x in an array Y[] using binary search. The program is erroneous. (GATE CS 2008)
f(int Y[10], int x) {
int i, j, k;
i = 0; j = 9;
do {
k =  (i + j) /2;
if( Y[k] < x)  i = k; else j = k;
} while(Y[k] != x && i < j);
if(Y[k] == x) printf ("x is in the array ") ;
else printf (" x is not in the array ") ;
}
On which of the following contents of Y and x does the program fail?
  • a)
    Y is [1 2 3 4 5 6 7 8 9 10] and x < 10
  • b)
    Y is [1 3 5 7 9 11 13 15 17 19] and x < 1
  • c)
    Y is [2 2 2 2 2 2 2 2 2 2] and x > 2
  • d)
    Y is [2 4 6 8 10 12 14 16 18 20] and 2 < x < 20 and x is even
Correct answer is option 'C'. Can you explain this answer?
Most Upvoted Answer
Consider the following C program that attempts to locate an element x ...
The above program doesn’t work for the cases where element to be searched is the last element of Y[] or greater than the last element (or maximum element) in Y[]. For such cases, program goes in an infinite loop because i is assigned value as k in all iterations, and i never becomes equal to or greater than j. So while condition never becomes false.
Free Test
Community Answer
Consider the following C program that attempts to locate an element x ...
The line "k = (i + j) / 2;" in the code is missing an operator. It should be "k = (i + j) / 2;" instead.
Explore Courses for Computer Science Engineering (CSE) exam

Similar Computer Science Engineering (CSE) Doubts

Question Description
Consider the following C program that attempts to locate an element x in an array Y[] using binary search. The program is erroneous. (GATE CS 2008)f(int Y[10], int x) {int i, j, k;i = 0; j = 9;do {k = (i + j) /2;if( Y[k] < x) i = k; else j = k;} while(Y[k] != x && i < j);if(Y[k] == x) printf ("x is in the array ") ;else printf (" x is not in the array ") ;}On which of the following contents of Y and x does the program fail?a)Y is [1 2 3 4 5 6 7 8 9 10] and x < 10b)Y is [1 3 5 7 9 11 13 15 17 19] and x < 1c)Y is [2 2 2 2 2 2 2 2 2 2] and x > 2d)Y is [2 4 6 8 10 12 14 16 18 20] and 2 < x < 20 and x is evenCorrect answer is option 'C'. Can you explain this answer? for Computer Science Engineering (CSE) 2025 is part of Computer Science Engineering (CSE) preparation. The Question and answers have been prepared according to the Computer Science Engineering (CSE) exam syllabus. Information about Consider the following C program that attempts to locate an element x in an array Y[] using binary search. The program is erroneous. (GATE CS 2008)f(int Y[10], int x) {int i, j, k;i = 0; j = 9;do {k = (i + j) /2;if( Y[k] < x) i = k; else j = k;} while(Y[k] != x && i < j);if(Y[k] == x) printf ("x is in the array ") ;else printf (" x is not in the array ") ;}On which of the following contents of Y and x does the program fail?a)Y is [1 2 3 4 5 6 7 8 9 10] and x < 10b)Y is [1 3 5 7 9 11 13 15 17 19] and x < 1c)Y is [2 2 2 2 2 2 2 2 2 2] and x > 2d)Y is [2 4 6 8 10 12 14 16 18 20] and 2 < x < 20 and x is evenCorrect answer is option 'C'. Can you explain this answer? covers all topics & solutions for Computer Science Engineering (CSE) 2025 Exam. Find important definitions, questions, meanings, examples, exercises and tests below for Consider the following C program that attempts to locate an element x in an array Y[] using binary search. The program is erroneous. (GATE CS 2008)f(int Y[10], int x) {int i, j, k;i = 0; j = 9;do {k = (i + j) /2;if( Y[k] < x) i = k; else j = k;} while(Y[k] != x && i < j);if(Y[k] == x) printf ("x is in the array ") ;else printf (" x is not in the array ") ;}On which of the following contents of Y and x does the program fail?a)Y is [1 2 3 4 5 6 7 8 9 10] and x < 10b)Y is [1 3 5 7 9 11 13 15 17 19] and x < 1c)Y is [2 2 2 2 2 2 2 2 2 2] and x > 2d)Y is [2 4 6 8 10 12 14 16 18 20] and 2 < x < 20 and x is evenCorrect answer is option 'C'. Can you explain this answer?.
Solutions for Consider the following C program that attempts to locate an element x in an array Y[] using binary search. The program is erroneous. (GATE CS 2008)f(int Y[10], int x) {int i, j, k;i = 0; j = 9;do {k = (i + j) /2;if( Y[k] < x) i = k; else j = k;} while(Y[k] != x && i < j);if(Y[k] == x) printf ("x is in the array ") ;else printf (" x is not in the array ") ;}On which of the following contents of Y and x does the program fail?a)Y is [1 2 3 4 5 6 7 8 9 10] and x < 10b)Y is [1 3 5 7 9 11 13 15 17 19] and x < 1c)Y is [2 2 2 2 2 2 2 2 2 2] and x > 2d)Y is [2 4 6 8 10 12 14 16 18 20] and 2 < x < 20 and x is evenCorrect answer is option 'C'. Can you explain this answer? in English & in Hindi are available as part of our courses for Computer Science Engineering (CSE). Download more important topics, notes, lectures and mock test series for Computer Science Engineering (CSE) Exam by signing up for free.
Here you can find the meaning of Consider the following C program that attempts to locate an element x in an array Y[] using binary search. The program is erroneous. (GATE CS 2008)f(int Y[10], int x) {int i, j, k;i = 0; j = 9;do {k = (i + j) /2;if( Y[k] < x) i = k; else j = k;} while(Y[k] != x && i < j);if(Y[k] == x) printf ("x is in the array ") ;else printf (" x is not in the array ") ;}On which of the following contents of Y and x does the program fail?a)Y is [1 2 3 4 5 6 7 8 9 10] and x < 10b)Y is [1 3 5 7 9 11 13 15 17 19] and x < 1c)Y is [2 2 2 2 2 2 2 2 2 2] and x > 2d)Y is [2 4 6 8 10 12 14 16 18 20] and 2 < x < 20 and x is evenCorrect answer is option 'C'. Can you explain this answer? defined & explained in the simplest way possible. Besides giving the explanation of Consider the following C program that attempts to locate an element x in an array Y[] using binary search. The program is erroneous. (GATE CS 2008)f(int Y[10], int x) {int i, j, k;i = 0; j = 9;do {k = (i + j) /2;if( Y[k] < x) i = k; else j = k;} while(Y[k] != x && i < j);if(Y[k] == x) printf ("x is in the array ") ;else printf (" x is not in the array ") ;}On which of the following contents of Y and x does the program fail?a)Y is [1 2 3 4 5 6 7 8 9 10] and x < 10b)Y is [1 3 5 7 9 11 13 15 17 19] and x < 1c)Y is [2 2 2 2 2 2 2 2 2 2] and x > 2d)Y is [2 4 6 8 10 12 14 16 18 20] and 2 < x < 20 and x is evenCorrect answer is option 'C'. Can you explain this answer?, a detailed solution for Consider the following C program that attempts to locate an element x in an array Y[] using binary search. The program is erroneous. (GATE CS 2008)f(int Y[10], int x) {int i, j, k;i = 0; j = 9;do {k = (i + j) /2;if( Y[k] < x) i = k; else j = k;} while(Y[k] != x && i < j);if(Y[k] == x) printf ("x is in the array ") ;else printf (" x is not in the array ") ;}On which of the following contents of Y and x does the program fail?a)Y is [1 2 3 4 5 6 7 8 9 10] and x < 10b)Y is [1 3 5 7 9 11 13 15 17 19] and x < 1c)Y is [2 2 2 2 2 2 2 2 2 2] and x > 2d)Y is [2 4 6 8 10 12 14 16 18 20] and 2 < x < 20 and x is evenCorrect answer is option 'C'. Can you explain this answer? has been provided alongside types of Consider the following C program that attempts to locate an element x in an array Y[] using binary search. The program is erroneous. (GATE CS 2008)f(int Y[10], int x) {int i, j, k;i = 0; j = 9;do {k = (i + j) /2;if( Y[k] < x) i = k; else j = k;} while(Y[k] != x && i < j);if(Y[k] == x) printf ("x is in the array ") ;else printf (" x is not in the array ") ;}On which of the following contents of Y and x does the program fail?a)Y is [1 2 3 4 5 6 7 8 9 10] and x < 10b)Y is [1 3 5 7 9 11 13 15 17 19] and x < 1c)Y is [2 2 2 2 2 2 2 2 2 2] and x > 2d)Y is [2 4 6 8 10 12 14 16 18 20] and 2 < x < 20 and x is evenCorrect answer is option 'C'. Can you explain this answer? theory, EduRev gives you an ample number of questions to practice Consider the following C program that attempts to locate an element x in an array Y[] using binary search. The program is erroneous. (GATE CS 2008)f(int Y[10], int x) {int i, j, k;i = 0; j = 9;do {k = (i + j) /2;if( Y[k] < x) i = k; else j = k;} while(Y[k] != x && i < j);if(Y[k] == x) printf ("x is in the array ") ;else printf (" x is not in the array ") ;}On which of the following contents of Y and x does the program fail?a)Y is [1 2 3 4 5 6 7 8 9 10] and x < 10b)Y is [1 3 5 7 9 11 13 15 17 19] and x < 1c)Y is [2 2 2 2 2 2 2 2 2 2] and x > 2d)Y is [2 4 6 8 10 12 14 16 18 20] and 2 < x < 20 and x is evenCorrect answer is option 'C'. Can you explain this answer? tests, examples and also practice Computer Science Engineering (CSE) tests.
Explore Courses for Computer Science Engineering (CSE) exam
Signup to solve all Doubts
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev