InterviewSolution
| 1. |
UML diagram allows to graphically depict inheritance feature.class diagramsequence diagramdeployment diagramo component diagram |
|
Answer» Answer: UML stands for Unified Modeling LANGUAGE. It’s a rich language to model software solutions, application structures, system behavior and business processes. There are 14 UML diagram types to help you model these behaviors. You can draw UML diagrams online using our software, or check out some UML diagram examples at our diagramming community. List of UML Diagram Types There are two main categories;
Structure diagrams show the THINGS in the modeled system. In a more technical term, they show different objects in a system. Behavioral diagrams show what should happen in a system. They describe how the objects interact with each other to create a functioning system. Class DiagramClass diagrams are the main building block of any object-oriented solution. It shows the classes in a system, attributes, and operations of each class and the relationship between each class. In most modeling tools, a class has three parts. Name at the top, attributes in the middle and operations or methods at the bottom. In a large system with many related classes, classes are grouped together to create class diagrams. Different relationships between classes are shown by different types of arrows. Sequence DiagramSequence diagrams in UML show how objects interact with each other and the order those interactions occur. It’s important to note that they show the interactions for a particular SCENARIO. The processes are represented vertically and interactions are shown as arrows. This article explains the purpose and the basics of Sequence diagrams. Also, check out this complete Sequence Diagram Tutorial to learn more about sequence diagrams. Deployment DiagramA deployment diagram shows the hardware of your system and the software in that hardware. Deployment diagrams are useful when your software solution is DEPLOYED across multiple machines with each having a unique configuration. Component DiagramA component diagram displays the structural relationship of components of a software system. These are mostly used when working with complex systems with many components. Components communicate with each other using interfaces. The interfaces are linked using connectors. |
|