# LabResult

This class represents the results of an lab for a student.

Problem Statement:

Create the labResult class so that it represents the results of a lab submitted by a student. Design the class to have only public fields, as specified in this document.

  • Data Attributes of the LabResult class:
    • LabNumber : Integer
    • TotalMarks : Integer
    • MarksEarned : Real
    • LabWeight : Integer
    • StudentId : Integer

Also create a driver for testing this class; you may use any name for the driver as long as it is not already mentioned in this package. In the driver, instantiate all of the labs you have submitted to date in this course and populate those objects with data (use hard-coded data).

Last updated on: 9/21/2019, 11:09:56 PM