Answer:
boolean containsVowel(String sentence)
if (sentence.isEmpty()) return false;
if (sentence.charAt(0) == 'a'
Step-by-step explanation:
1.6m questions
2.0m answers