Study the scenario and complete the question(s) that follow: Eduvos needs a student discipline and performance tracking
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Study the scenario and complete the question(s) that follow: Eduvos needs a student discipline and performance tracking
Study the scenario and complete the question(s) that follow:Eduvos needs a student discipline and performance trackingmanagement application that will store students’ details relatingto the module that a student has issues with in a database systemfor easy tracking and management. This system captures studentdetails such as student name, student id and the module concerned.Question 5 Using the same scenario above you are required tocreate aPYthon class called StudentDetails with theinstance variables studentName, studentNo, module and description.The class has four methods readDetails, addDetails, saveDetails anddisplayDetails. The saveDetails saves the details into a text filewhich receives the arguments from the class. The readDetailsencapsulates code for reading data from the console and then callsaddDetails method for assigning the read values to instancevariables. Then saveDetails method is called by the addDetailswhich in return calls the displayDetails. The display method printsall the details of the student.