Question: The following code attempts to examine a String and return whether it contains a given letter. A flag named found is used. However, the Boolean
The following code attempts to examine a String and return whether it contains a given letter. A flag named found is used. However, the Boolean logic is not implemented correctly, so the method does not always return the correct answer. In what cases does the method report an incorrect answer? How can the code be changed so that it will always return a correct result?

public static boolean contains (String str, char ch) { boolean found false; %3D for (int i = 0; i < str.length (); i++) { if (str.charAt (i) ch) { found true; %3D } else { found false; } return found;
Step by Step Solution
3.34 Rating (172 Votes )
There are 3 Steps involved in it
In this contains code the boolean flag isnt being used properly because if the code ... View full answer
Get step-by-step solutions from verified subject matter experts
