Answered step by step
Verified Expert Solution
Question
1 Approved Answer
solve it using OOP plz.. -> C Secure | https://csns.calstatela.edu/submission/description?assignmentld=6355750 General Description: For this assignment you will be writing a point of sale program which
solve it using OOP plz..
-> C Secure | https://csns.calstatela.edu/submission/description?assignmentld=6355750 General Description: For this assignment you will be writing a point of sale program which allows a user to build a computer and calculate the total cost of the build. You will create a menu-driven program which will give the user several options for building the computer. This program will have you juggling several different classes at once. NOTE 1: You may NOT make any changes to the classes as they are defined here. You may not add to, or take from the class. They need to be designed following the UML diagrams exactly. You MAY however add any additional classes you feel will enhance your program or make the code more organized. NOTE 2: The computer parts and prices are outdated by this point. If you wish to do your own research and use newer parts and costs feel freel You must have at least three of each type of computer part. Feel free to add more parts as you see fit. Please use package name "hw3". The Computer Class: Computer towerCase: Case -monitor: Monitor -cpu: CPU -videoCard: VideoCard FhardDrive: HardDrive |-memory: Memory A Case object. A Monitor object. A CPU object. A VideoCard object. A HardDrive object. A Memory object. Constructor. +Computer(case: Case, monitor: Monitor, cpu: CPU, videoCard: VideoCard, hardDrive: HardDrive, memory: Memory) +getCase(): Case +getMonitor(): Monitor +getCPU): CPU + getVideoCard: VideoCard + getHardDrive: HardDrive + getMemory): Memory Getter for the Case. Getter for the Monitor. Getter for the CPU. Getter for the Video Card. Getter for the HardDrive. Getter for the Memory. I nuo 9:11 PMStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started