Visual Studio c++ Make sure it runs and add picture of console screen and comments 1. Read a file that contains a list o

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

Visual Studio c++ Make sure it runs and add picture of console screen and comments 1. Read a file that contains a list o

Post by answerhappygod »

Visual Studio c++
Make sure it runs and add picture of console screen and
comments
1. Read a file that contains a list of applicants and their
skill-set, where each skill is separated by a
single white space character, as in the following example:
Ahmed c++ java
Ayesha c c++ assembly
Ali c++ java
Salman java javascript python
Sara python javascript
Implement classes Applicant and Skill, considering appropriate
relationship between the two, in
order to capture the information read from the file.
2. Use inheritance and polymorphism to implement skill matching
strategies such as MatchAll,
MatchAny, MatchAtleast, etc. For instance:
matchall({“c++”, “java”}): Ahmed, Ali
matchany({“c++”, “java”}): Ahmed, Ayesha, Ali, Salman
matchatleast(2, {“c++”, “java”, “assembly”}): Ahmed, Ayesha,
Ali
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply