Write a method checkCharacter() which has 2 parameters: A String, and a specified index (an int). Method checkCharacter() checks the character at the specified index of the String parameter, and returns a String based on the type of character at that location indicating if the character is a letter, digit, whitespace, or unknown character. Ex: The method calls below with the given arguments will return the following Strings: checkCharacter("happy birthday", 2) returns "Character 'p' is a letter" checkCharacter("happy birthday", 5) returns "Character ' ' is a white space" checkCharacter("happy birthday 2 you", 15) returns "Character '2' is a digit" checkCharacter("happy birthday!", 14) returns "Character '!' is unknown" Your program must define the method: public String checkCharacter(String word, int index) code: import java.util.Scanner; public class FunWithCharacters {    /* Type your code here */        public static void main(String[] args) {              FunWithCharacters labObject = new FunWithCharacters();       String word = "happy birthday"; // Set string       int index = 2; // Set specified index to 2       System.out.println(labObject.checkCharacter(word, index));              index = 5; // Set specified index to 2       System.out.println(labObject.checkCharacter(word, index));              word = "happy birthday 2 you";        index = 15; // Set specified index to 2       System.out.println(labObject.checkCharacter(word, index));              word = "happy birthday!";        index = 14; // Set specified index to 2       System.out.println(labObject.checkCharacter(word, index));    } }

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter3: Input/output
Section: Chapter Questions
Problem 12SA: 12. What is the output of the following program? (2, 3, 6, 8) #include <iostream> #include...
icon
Related questions
Question

5.27 LAB: Fun with characters (EO)

 

Write a method checkCharacter() which has 2 parameters: A String, and a specified index (an int). Method checkCharacter() checks the character at the specified index of the String parameter, and returns a String based on the type of character at that location indicating if the character is a letter, digit, whitespace, or unknown character.

Ex: The method calls below with the given arguments will return the following Strings:

checkCharacter("happy birthday", 2) returns "Character 'p' is a letter"
checkCharacter("happy birthday", 5) returns "Character ' ' is a white space"
checkCharacter("happy birthday 2 you", 15) returns "Character '2' is a digit"
checkCharacter("happy birthday!", 14) returns "Character '!' is unknown"

Your program must define the method:
public String checkCharacter(String word, int index)

code:

import java.util.Scanner;

public class FunWithCharacters {

   /* Type your code here */
   
   public static void main(String[] args) {
      
      FunWithCharacters labObject = new FunWithCharacters();
      String word = "happy birthday"; // Set string
      int index = 2; // Set specified index to 2
      System.out.println(labObject.checkCharacter(word, index));
      
      index = 5; // Set specified index to 2
      System.out.println(labObject.checkCharacter(word, index));
      
      word = "happy birthday 2 you"; 
      index = 15; // Set specified index to 2
      System.out.println(labObject.checkCharacter(word, index));
      
      word = "happy birthday!"; 
      index = 14; // Set specified index to 2
      System.out.println(labObject.checkCharacter(word, index));
   }
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 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
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning