Consider the following structure:  public class Student {   …

Consider the following structure:  public class Student {     String name;     int age;     String major;     public static void main(String[] args) {         System.in.println(“Student Info.”);     }  }    Create a class constructor for the Student class that accepts the student’s name, age, and major and set the class attributes name, age, and major to these parameters.