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...
We'll cover the following...
Problem Statement
Write a Java class called Student
with
-
private
fields:-
name
(String
type) -
mark1
andmark2
(double type)
-
And methods:
-
getMarks(int
...