Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribed

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Filing And Computer Database Projects

Authors: Jeffrey Stewart

2nd Edition

007822781X, 9780078227813

More Books

Students also viewed these Databases questions

Question

43 Executive compensation methods. SPHR ONLY

Answered: 1 week ago

Question

How do Data Types perform data validation?

Answered: 1 week ago

Question

How does Referential Integrity work?

Answered: 1 week ago