1. Write a Java class named Student with three data members of your choice. You should provide all constructors, get/set methods, and a display member method which displays values of all data members. You should create a driver class to test the Student class. Test your code and take screenshots. How do you track the total number of Student objects?
2. Add a static data field named numberOfStdents. Now create some Student objects. Verify how this static data member helps you track the total number of objects by running some tests. Take screenshots.
3. Create a Student object array with suitable initial values in the main method of the driver class. Write a displayArray method in the driver class which receives the array from the main method and displays its data members. Take screenshots.