Java Program to check character is Vowel or Consonant

Check Character Is Vowel Or Consonant in java

In this tutorial, we are going to learn writing java program to check if the character is a vowel ( a, e, i, o, u) or any other alphabet other than vowels i.e. consonants. For any input character, we have to check whether a character is a vowel or consonant. For example Check Given Character … Read more

Python program to check given character is vowel or consonant

Check Given Character Is Vowel Or Consonant in python

In this tutorial we are going to learn writing python program to check given character is a vowel ( a, e, i, o, u) or any other alphabet other than vowels(consonant) . Problem statement For any input character, we have to check whether a character is a vowel or consonant. For example: Our logic to … Read more