Can help in java? Define a static method, which as parameters object String (symbolizes low) and symbol and returns a Boolean value, the result of the check contained in the string. In the test function, illustrate accept the method.

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter10: Object-oriented Programming
Section: Chapter Questions
Problem 13RQ
icon
Related questions
Question

Can help in java?

Define a static method, which as parameters object String (symbolizes low) and symbol and returns a Boolean value, the result of the check contained in the string. In the test function, illustrate accept the method.

Expert Solution
Java Code :

// Defining the Main Method
public class Main
{
    // Defining the  static method
    public static boolean TestMethod(String s,String c)
    {
        if(s.contains(c)==true)
            return true;
        else
            return false;
        
    }
    
    // Main function
 public static void main(String[] args) 
 {
     // First testcase
     String s = "ABCD";
     String c = "C";
  System.out.println(Main.TestMethod(s,c));
  
  // Second testcase
     s = "ABCD";
     c = "b";
  System.out.println(Main.TestMethod(s,c));
  
 }
}

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Developing computer interface
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage