Your task is to create a basic Java program that represents a student's report card. The goal is to learn how to create a **class**, instantiate it to create an **object**, and then use that object to perform a simple task.
Student Class: Design a single class named Student.String name, int mathScore, int scienceScore, and int englishScore.Student class:
Main: In the main method, create a **single object** of the Student class.
Your main method must demonstrate the program works by testing the following scenarios: