Java Program to Calculate Grade of Students

In this tutorial, we will write a java program to calculate the grade of the student. Before that, you should have knowledge on the following topic in java: Java if else ladder Java switch Case Java Program to calculate and display Student Grades: The program simply takes a user input for the number of subjects … Read more

Currency Conversion Program in Java

In this section of the java program tutorial, we will learn how to write a Java Currency Converter Program and see how it works. Before we begin, let me tell you that this is a beginner’s tutorial for the currency converter program in java. Although there are many ways in which you can create a … Read more

Menu Driven Program in Java

In this tutorial, we will write a program on menu driven in java using switch statement along with source code. The switch case is mostly used when it is necessary to give options to the users. If you do not know the working process of the switch case statement then click the link below. switch … Read more

Java Program to print ASCII value of a Character

In this tutorial, you will learn how to find the ASCII value of a character in Java. Before that, you need to have the knowledge of the following in Java Programming. Data-types Type-Casting ASCII stands for American Standard Code for Information Interchange. It is a 7-bit character set that contains 128 (0 to 127) characters. It represents the … Read more

Java Program to Check for Leap Year

The following Program to Check if the Entered year is a leap year or not, the if-else statement has been used. If you want to learn about the if-else statement in Java, click the link below. If-Else statement in Java A leap year comes after every 4 years and has 366 days that year instead … Read more