Question: I need this in Java In Engilish, a vowel is one of 5 letters representing a vowel sound: a,e,l,o,u A consonant is a letter (sound)
I need this in Java 
In Engilish, a vowel is one of 5 letters representing a vowel sound: a,e,l,o,u A consonant is a letter (sound) of the English alphabet that is not a vowel. Instructions 1. Analysis: Identify the input(s), process and output(s) for a program that - prompts the user to enter two stringsA consonant is a letter (sound) of the English alphabet that is not a vowel. - display the length and last character of each string - check and display whether the last character of the first string is a vowel or consonant or is not a consonant or a vowel, - check and display whether the last character of the second string is a vowel or consonant or is not a consonant or a vow - check and display whether the second string is a substring of the first string, - whether the random character is a substring of the first string and 2. Design: Using Google Draw or diagrams.net, create the flowchart to design the process 3. Implementation: Write the program designed in your flowchart. Here are some samples of how your program should run: Enter the first string: ABCD Enter the second string: BC The length of the first string is 4 and its last character is D The length of the second string is 2 and its last character is C The last character of the first string, D, is a consonant The last character of the second string, C, is a consonant The second string, BC, is a substring of the first string ABCD
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
