In c++ You are required to implement a basic social media portal where a user can create his/her profile You can provide user the options to create a new profile, update profile and delete profile as...


In c++


You are required to implement a basic social media portal where a user can create his/her profile


You can provide user the options to create a new profile, update profile and delete profile as well.



Create a class Profile having necessary information of user ( ID, Name, gender, age, email, interest, Date of birth) provide appropriate methods.


Next create a class Portal which uses node of Profile Class to handle profiles. Next provide methods to



  • InsertProfile (ID, Name, gender, age, email, interest, Date of birth)// adds new profile to the list.

  • UpdateProfile (int id) which helps user to update his/her profile information)

  • DeleteProfile(string name)// delete a particular profile form the list

  • searchProfile(string name)

  • Display ()// display all values.


In main create a menu to show the following options to the user



  • Add new Profile

  • Update Profile ( which helps user to update his/her profile information)

  • Delete a Profile

  • Search Profile

  • Display All



The program runs until user wants to exit.



Jun 10, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here