Converts a problem statement into class diagram.
Converts a problem statement into class diagram.
“Develop a Banking System in which customer can open account. The account has the functionality of deposit, withdraw and get balance. There are two kinds of account; Current Account and Saving Account. Each kind of accounts withdraw in different ways. The account is identified by account number.”
You have to use standard UML notations for objects, classes, and their associations.
Besides problem statement; objects, properties, and functions of a system can also be extracted from domain knowledge. You have to consider all OOP concepts like abstraction, encapsulation, inheritance, association, generalization, and specialization wherever applicable.
To learn how to convert Problem Statment into UML class diagram click here: Step-wise procedure to translate a problem statement into class diagram
Map (implement/Code) the above class diagram into C++.