Question 1 Using C++, write a class Students_Time Table which has the following attributes: Student_ID, Student_Name, Su
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Question 1 Using C++, write a class Students_Time Table which has the following attributes: Student_ID, Student_Name, Su
Question 1 Using C++, write a class Students_Time Table which has the following attributes: Student_ID, Student_Name, Subject_name, Section, Course_Instructor, Class_Time Add the following functions in your class A. A default constructor B. A constructor that sets all variables of the class C. A copy constructor D. Appropriate get and set functions to get and set all attributes E. Function to search the student by Student_ID F. Function to display time table of student containing the section, subject, teacher information and class timing. G. An operator overloading=function to compare if students class timings are same and display student's information having time conflict. (HH:MM:SS:MS) H. An operator overloading! = function to compare if students class timings are same and display student's information having time conflict. (HH:MM:SS:MS) 1. A function to print the information of the class Students_Time Table. Write a program to test various operations on the objects of the class Students_Time Table. Make a record of 10 students using Arrays of type Students_Time Table.