Challenge 3: Calculate the Student's Total Marks
In this exercise, you have to calculate the student's total marks using the concept of Classes
We'll cover the following...
Problem Statement
Write a Java class called Student with
-
privatefields:-
name(Stringtype) -
mark1andmark2(double type)
-
And methods:
-
...
Ask