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

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? Change the code so that it will always return a correct result. Revert Type your solution here: 1public static boolean contains (String str, char ch) ( 2 boolean found = false; for (int i = e; i str.length(); i++) { 4 if ((str.charAt(1) == ch )) { found = true; ) else f 6 7 8 9 found = false; 10 return found

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!