Page 1 of 1

Question 1 Using C++, write a class Students_Time Table which has the following attributes: Student_ID, Student_Name, Su

Posted: Wed Mar 30, 2022 9:17 am
by answerhappygod
Question 1 Using C Write A Class Students Time Table Which Has The Following Attributes Student Id Student Name Su 1
Question 1 Using C Write A Class Students Time Table Which Has The Following Attributes Student Id Student Name Su 1 (46.61 KiB) Viewed 43 times
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.