Your task is to create a simple Java program to calculate a student's grade. This problem is designed to help you practice using **classes**, **objects**, and **encapsulation** to create a well-structured solution.
Student Class: Design a single class named Student to represent a student's data and actions.Student object with a name and three scores.public double calculateAverageScore(): A method to calculate and return the average score.public char getGrade(): A method to determine and return the letter grade based on the average score.public void displayReport(): A method that prints all student information and the final grade in a clear format.Main: In your `main` method, create at least one `Student` object and call the `displayReport()` method to show it works.Your main method must demonstrate the program works by testing the following scenarios: