Challenge 2: Calculate the Student's Performance
In this exercise, you have to calculate a student's total marks using the concept of Classes.
We'll cover the following...
Problem statement
Implement a class - Student - that has four properties and two methods. All these attributes (properties and methods) should be public. This problem can be broken down into three tasks.
Task 1
Implement a constructor to ...
Ask