GATE Exam  >  GATE Questions  >  The procedure given below is required to find... Start Learning for Free
The procedure given below is required to find and replace certain characters inside an input
character string supplied in array A. The characters to be replaced are supplied in array oldc,
while their respective replacement characters are supplied in array newc. Array A has a fixed
length of five characters, while arrays oldc and newc contain three characters each. However, the
procedure is flawed
void find _ and _ replace (char *A, char *oldc, char * newc ) {
for (int i= 0; i <5; i++)
for (int j =0; j <3; j++)
if (A [i] ==oldc[ j])  A [i]= newc [j] ;
}
The procedure is tested with the following four test cases
(1) oldc = "abc", newc = "dab"            (2) oldc = "cde", newc = "bcd"
(3) oldc = "bca", newc = "cda"            (4) oldc = "abc", newc = "bac"
Q.
If array A is made to hold the string “abcde”, which of the above four test cases will be
successful in exposing the flaw in this procedure?
  • a)
    None
  • b)
    2 only
  • c)
    3 and 4 only
  • d)
    4 only
Correct answer is option 'C'. Can you explain this answer?
Verified Answer
The procedure given below is required to find and replace certain char...
Now for string “abcde” in array A, both test case (3) and (4) will be successful in finding the
flaw, as explained in above question.
View all questions of this test
Explore Courses for GATE exam
The procedure given below is required to find and replace certain characters inside an inputcharacter string supplied in array A. The characters to be replaced are supplied in array oldc,while their respective replacement characters are supplied in array newc. Array A has a fixedlength of five characters, while arrays oldc and newc contain three characters each. However, theprocedure is flawedvoid find _ and _ replace (char *A, char *oldc, char * newc ) {for (int i= 0; i <5; i++)for (int j =0; j <3; j++)if (A [i] ==oldc[ j]) A [i]= newc [j] ;}The procedure is tested with the following four test cases(1) oldc = "abc", newc = "dab" (2) oldc = "cde", newc = "bcd"(3) oldc = "bca", newc = "cda" (4) oldc = "abc", newc = "bac"Q.If array A is made to hold the string “abcde”, which of the above four test cases will besuccessful in exposing the flaw in this procedure?a)Noneb)2 onlyc)3 and 4 onlyd)4 onlyCorrect answer is option 'C'. Can you explain this answer?
Question Description
The procedure given below is required to find and replace certain characters inside an inputcharacter string supplied in array A. The characters to be replaced are supplied in array oldc,while their respective replacement characters are supplied in array newc. Array A has a fixedlength of five characters, while arrays oldc and newc contain three characters each. However, theprocedure is flawedvoid find _ and _ replace (char *A, char *oldc, char * newc ) {for (int i= 0; i <5; i++)for (int j =0; j <3; j++)if (A [i] ==oldc[ j]) A [i]= newc [j] ;}The procedure is tested with the following four test cases(1) oldc = "abc", newc = "dab" (2) oldc = "cde", newc = "bcd"(3) oldc = "bca", newc = "cda" (4) oldc = "abc", newc = "bac"Q.If array A is made to hold the string “abcde”, which of the above four test cases will besuccessful in exposing the flaw in this procedure?a)Noneb)2 onlyc)3 and 4 onlyd)4 onlyCorrect answer is option 'C'. Can you explain this answer? for GATE 2024 is part of GATE preparation. The Question and answers have been prepared according to the GATE exam syllabus. Information about The procedure given below is required to find and replace certain characters inside an inputcharacter string supplied in array A. The characters to be replaced are supplied in array oldc,while their respective replacement characters are supplied in array newc. Array A has a fixedlength of five characters, while arrays oldc and newc contain three characters each. However, theprocedure is flawedvoid find _ and _ replace (char *A, char *oldc, char * newc ) {for (int i= 0; i <5; i++)for (int j =0; j <3; j++)if (A [i] ==oldc[ j]) A [i]= newc [j] ;}The procedure is tested with the following four test cases(1) oldc = "abc", newc = "dab" (2) oldc = "cde", newc = "bcd"(3) oldc = "bca", newc = "cda" (4) oldc = "abc", newc = "bac"Q.If array A is made to hold the string “abcde”, which of the above four test cases will besuccessful in exposing the flaw in this procedure?a)Noneb)2 onlyc)3 and 4 onlyd)4 onlyCorrect answer is option 'C'. Can you explain this answer? covers all topics & solutions for GATE 2024 Exam. Find important definitions, questions, meanings, examples, exercises and tests below for The procedure given below is required to find and replace certain characters inside an inputcharacter string supplied in array A. The characters to be replaced are supplied in array oldc,while their respective replacement characters are supplied in array newc. Array A has a fixedlength of five characters, while arrays oldc and newc contain three characters each. However, theprocedure is flawedvoid find _ and _ replace (char *A, char *oldc, char * newc ) {for (int i= 0; i <5; i++)for (int j =0; j <3; j++)if (A [i] ==oldc[ j]) A [i]= newc [j] ;}The procedure is tested with the following four test cases(1) oldc = "abc", newc = "dab" (2) oldc = "cde", newc = "bcd"(3) oldc = "bca", newc = "cda" (4) oldc = "abc", newc = "bac"Q.If array A is made to hold the string “abcde”, which of the above four test cases will besuccessful in exposing the flaw in this procedure?a)Noneb)2 onlyc)3 and 4 onlyd)4 onlyCorrect answer is option 'C'. Can you explain this answer?.
Solutions for The procedure given below is required to find and replace certain characters inside an inputcharacter string supplied in array A. The characters to be replaced are supplied in array oldc,while their respective replacement characters are supplied in array newc. Array A has a fixedlength of five characters, while arrays oldc and newc contain three characters each. However, theprocedure is flawedvoid find _ and _ replace (char *A, char *oldc, char * newc ) {for (int i= 0; i <5; i++)for (int j =0; j <3; j++)if (A [i] ==oldc[ j]) A [i]= newc [j] ;}The procedure is tested with the following four test cases(1) oldc = "abc", newc = "dab" (2) oldc = "cde", newc = "bcd"(3) oldc = "bca", newc = "cda" (4) oldc = "abc", newc = "bac"Q.If array A is made to hold the string “abcde”, which of the above four test cases will besuccessful in exposing the flaw in this procedure?a)Noneb)2 onlyc)3 and 4 onlyd)4 onlyCorrect answer is option 'C'. Can you explain this answer? in English & in Hindi are available as part of our courses for GATE. Download more important topics, notes, lectures and mock test series for GATE Exam by signing up for free.
Here you can find the meaning of The procedure given below is required to find and replace certain characters inside an inputcharacter string supplied in array A. The characters to be replaced are supplied in array oldc,while their respective replacement characters are supplied in array newc. Array A has a fixedlength of five characters, while arrays oldc and newc contain three characters each. However, theprocedure is flawedvoid find _ and _ replace (char *A, char *oldc, char * newc ) {for (int i= 0; i <5; i++)for (int j =0; j <3; j++)if (A [i] ==oldc[ j]) A [i]= newc [j] ;}The procedure is tested with the following four test cases(1) oldc = "abc", newc = "dab" (2) oldc = "cde", newc = "bcd"(3) oldc = "bca", newc = "cda" (4) oldc = "abc", newc = "bac"Q.If array A is made to hold the string “abcde”, which of the above four test cases will besuccessful in exposing the flaw in this procedure?a)Noneb)2 onlyc)3 and 4 onlyd)4 onlyCorrect answer is option 'C'. Can you explain this answer? defined & explained in the simplest way possible. Besides giving the explanation of The procedure given below is required to find and replace certain characters inside an inputcharacter string supplied in array A. The characters to be replaced are supplied in array oldc,while their respective replacement characters are supplied in array newc. Array A has a fixedlength of five characters, while arrays oldc and newc contain three characters each. However, theprocedure is flawedvoid find _ and _ replace (char *A, char *oldc, char * newc ) {for (int i= 0; i <5; i++)for (int j =0; j <3; j++)if (A [i] ==oldc[ j]) A [i]= newc [j] ;}The procedure is tested with the following four test cases(1) oldc = "abc", newc = "dab" (2) oldc = "cde", newc = "bcd"(3) oldc = "bca", newc = "cda" (4) oldc = "abc", newc = "bac"Q.If array A is made to hold the string “abcde”, which of the above four test cases will besuccessful in exposing the flaw in this procedure?a)Noneb)2 onlyc)3 and 4 onlyd)4 onlyCorrect answer is option 'C'. Can you explain this answer?, a detailed solution for The procedure given below is required to find and replace certain characters inside an inputcharacter string supplied in array A. The characters to be replaced are supplied in array oldc,while their respective replacement characters are supplied in array newc. Array A has a fixedlength of five characters, while arrays oldc and newc contain three characters each. However, theprocedure is flawedvoid find _ and _ replace (char *A, char *oldc, char * newc ) {for (int i= 0; i <5; i++)for (int j =0; j <3; j++)if (A [i] ==oldc[ j]) A [i]= newc [j] ;}The procedure is tested with the following four test cases(1) oldc = "abc", newc = "dab" (2) oldc = "cde", newc = "bcd"(3) oldc = "bca", newc = "cda" (4) oldc = "abc", newc = "bac"Q.If array A is made to hold the string “abcde”, which of the above four test cases will besuccessful in exposing the flaw in this procedure?a)Noneb)2 onlyc)3 and 4 onlyd)4 onlyCorrect answer is option 'C'. Can you explain this answer? has been provided alongside types of The procedure given below is required to find and replace certain characters inside an inputcharacter string supplied in array A. The characters to be replaced are supplied in array oldc,while their respective replacement characters are supplied in array newc. Array A has a fixedlength of five characters, while arrays oldc and newc contain three characters each. However, theprocedure is flawedvoid find _ and _ replace (char *A, char *oldc, char * newc ) {for (int i= 0; i <5; i++)for (int j =0; j <3; j++)if (A [i] ==oldc[ j]) A [i]= newc [j] ;}The procedure is tested with the following four test cases(1) oldc = "abc", newc = "dab" (2) oldc = "cde", newc = "bcd"(3) oldc = "bca", newc = "cda" (4) oldc = "abc", newc = "bac"Q.If array A is made to hold the string “abcde”, which of the above four test cases will besuccessful in exposing the flaw in this procedure?a)Noneb)2 onlyc)3 and 4 onlyd)4 onlyCorrect answer is option 'C'. Can you explain this answer? theory, EduRev gives you an ample number of questions to practice The procedure given below is required to find and replace certain characters inside an inputcharacter string supplied in array A. The characters to be replaced are supplied in array oldc,while their respective replacement characters are supplied in array newc. Array A has a fixedlength of five characters, while arrays oldc and newc contain three characters each. However, theprocedure is flawedvoid find _ and _ replace (char *A, char *oldc, char * newc ) {for (int i= 0; i <5; i++)for (int j =0; j <3; j++)if (A [i] ==oldc[ j]) A [i]= newc [j] ;}The procedure is tested with the following four test cases(1) oldc = "abc", newc = "dab" (2) oldc = "cde", newc = "bcd"(3) oldc = "bca", newc = "cda" (4) oldc = "abc", newc = "bac"Q.If array A is made to hold the string “abcde”, which of the above four test cases will besuccessful in exposing the flaw in this procedure?a)Noneb)2 onlyc)3 and 4 onlyd)4 onlyCorrect answer is option 'C'. Can you explain this answer? tests, examples and also practice GATE tests.
Explore Courses for GATE exam
Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev