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…

Java Program to check given strings are Anagram or not

In this tutorial, you will learn the writing program in to check string is anagrams or not in java. How this Java program will behave? This Program will take two String as an input. And…

Java Program to count occurrences of given character in string

In this tutorial we will learn how to write program in Java to count occurrence of character in a String. How this Java program will behave? This Java program will take a string and a…

Java Program to remove a given character from string

In this tutorial you will learn writing program for how to remove a character from a string in java. Before start writing this program you should know how to work with String and character in…