Java Program to Count Vowels and Consonants in the String

In this tutorial, we are going to learn java programming to count the number of vowels (‘a’, ‘e’, ‘i’, ‘o’, ‘u’) and consonants (any alphabet other than vowels) in a string. For any input string,…

Java Program to remove Vowels from the String

In this tutorial, we are going to learn java programming to remove all vowels present in the string. For any input string, we have to check whether the string contains vowels or not, if it…

Java Program to Convert Lowercase vowel into Uppercase in String

In this tutorial, we are going to learn a python program to convert vowels (‘a’, ‘e’, ‘i’, ‘o’, ‘u’) with their respective uppercase. For any input as a string from the user, we have to…

Java program to Convert Lowercase Character to Uppercase Character

In this tutorial, we are going to see a java program to convert lowercase characters (alphabet) into uppercase characters (alphabet). For any input string, any lowercase character used in input string will be replaced with…

Java Program to check given Character is digit or not

In this tutorial we are going to check if the character is Digit ( 0-9) and write the java program for the same. There are some logic behind characters which are mentioned below: A character…

Java Program to check character is Vowel or Consonant

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…

Java Program to check given string is Palindrome or not

In this tutorial, you will learn the writing program for how to check if a string is a palindrome in java . How this Java program will behave? To check String is Palindrome or not? This…