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

Example of this keyword in Java

In this tutorial, we will write this keyword program in java. Before that, you should have knowledge on the following topic in Java. this keyword in Java Example of this keyword in Java in constructor: Output: Name: Daniel marks:90 this: Invoke current class method: The method of the current class can be invoked by using … Read more

Java example of Inner Class

In this tutorial, we will write an inner class program in java. Before that, you should have knowledge on the following topic in Java. Inner class in Java Example of Inner class in Java To demonstrate the example if Member inner Class in Java: Output: Inner class Acceseed Example: Accessing static method of a static class … Read more

Example of Constructor in Java

In this tutorial, we will write a constructor program in java. Before that, you should have knowledge on the following topic in Java. Constructor in Java Constructor program in Java Basic Example for displaying the default values in Java: Output: 0 null 0 0 null 0 Example of Parameterized Constructor in Java: Output: 101 John … Read more

Java Program for Super keyword

In this tutorial, we will write a program in java for the use of super keyword. Before that, you should have knowledge on the following topic in Java. Super Keyword in Java Java Program for Super keyword Example of a super keyword to differentiate the members of the superclass from a subclass. Output: Base Class display … Read more

Inheritance Example in Java

In this tutorial, we will write an Inheritance program in java. Before that, you should have knowledge on the following topic in Java. Inheritance in Java Basic Example for Inheritance: Output: My Name is Bruno German Shepard Example of Single Inheritance in Java: Output: Super class method Base class method Example of Multilevel Inheritance in … Read more