Your task is to create a simple Java program to manage student results. This problem is designed to help you practice creating a well-structured class with its own data and behavior, applying the fundamental concept of **encapsulation**.
Student Class: Design a single class named Student to represent a student's data and actions.public int getTotalScore(): A method to calculate and return the sum of all three scores.public double getAverageScore(): 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.Your main method must demonstrate the program works by testing the following scenarios: