a value-returning function, isVowel, that returns the value Write true if a given character is a vowel and otherwise returns false. 2. Show transcribed image text a value-returning function, isVowel, that returns the value Write true if a given character is a vowel and otherwise returns false. 2.
Solution
public boolean isVowel(char ch){ if(ch == ‘a’ || ch == ‘e’ || ch == ‘i’ || ch == ‘o’ || ch == ‘u’ || ch == ‘A’ ||
OR
OR