Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Using C++ please 3. (25 marks e want to create a class called Student, which represents the students of a university. A student is defined

image text in transcribed

Using C++ please

3. (25 marks e want to create a class called Student, which represents the students of a university. A student is defined with the following attributes: id number (int), first name (string), last name (string), date of birth (string), address (string), and telephone (area code (int) and 7-digit telephone number(string)). The member functions of the class Student must perform the following operations: Return the id number Returm the first name of the student . Modify the first name of the student. - Returm the last name of the student Modify the last name of the student Return the full name, Le., first name and last name. Retun the date of birth. Modify the date of birth. Return the age of the student - Returm the address of the student. Modify the address of the student. e Return the telephone number Modify the telephone number Return true if two given students have the same last name. Return false otherwise. Return true if two given students are roommates, Le., they live in the same address. Test your class by prompting the user to enter information about two particular students. Create two objects of the class Student with the information entered by the user, and finally, and test the member functions of the class. COEN 243 Fall 2018 A file called student.h that contains the specification of the class. A file called student.cpp that contains the implementation of the member functions of the class. A file called teststudent.cpp that contains the main function

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

OpenStack Trove

Authors: Amrith Kumar, Douglas Shelley

1st Edition

1484212215, 9781484212219

More Books

Students also viewed these Databases questions

Question

What are the classifications of Bank?

Answered: 1 week ago