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…

Calculate Simple Interest Program in Java

In this tutorial, we are going to learn writing a python program to calculate simple interest from given principal, rate of interest, and time. Problem Statement Our program takes three inputs from the user as…

Convert Fahrenheit into Celsius Program in Java

In this tutorial, we are going to learn a python program to convert Fahrenheit into Celsius. This program will be simple because we have a Fahrenheit to Celsius conversion formula for this temperature conversion. We…

Convert Celsius into Fahrenheit Program in Java

In this tutorial, We are going to learn a java program to convert Celsius into Fahrenheit. This program will be simple because we will use just a given formula of Celsius to Fahrenheit conversion. We…

Java Program to Check Given year is leap or not

In this tutorial, we are going to learn writing java program to check if the given year is a leap year or not. A Leap year comes every 4 year and the days in February…