Vidyalankar. T.Y. Diploma : Sem. VI [IF/CM] Object Oriented Modeling and Design Prelim Question Paper Solution

Size: px
Start display at page:

Download "Vidyalankar. T.Y. Diploma : Sem. VI [IF/CM] Object Oriented Modeling and Design Prelim Question Paper Solution"

Transcription

1 T.Y. Diploma : Sem. VI [IF/CM] Object Oriented Modeling and Design Prelim Question Paper Solution Q.1(a) Attempt any THREE of the following [12] Q.1(a) (i) What is modeling? Also state its four features. [4] Importance of Modeling Modeling is a proven and well accepted engineering technique. We build architectural model of houses and high rises to help their users visualize the final product. We may even build mathematical models to analyze the effects of wind or earthquakes on our building. Modeling is not just the part of the building industry. Modeling would be unbelievable to deploy a new aircraft or an automobile without first building models from computer models to physical wind tunnel models full scale prototypes. A model is a simplification of reality. A model provides the blueprints of the system. Models may encompass detail plans as well as more general plans. A good model includes those elements that have broad effect and omits those minor elements that are not relevant to the given level of abstraction. Every system may be described from different aspects using different models and each model is therefore semantically closed abstraction of the system. A model may be structural, emphasizing the organization of the system or it may be behavioral, emphasizing the dynamics of the system. We built models so that we can better understand the system we are developing through modeling, we achieve four aims : 1. Models help us to visualize the system as it is or as we want it to be. 2. Models permit us to specify the structure or behavior of a system. 3. Model gives us a template that guides us in constructing a system. 4. Models document the decision we have made. We build models of complex system because we cannot understand such a system in its whole. Q.1(a) (ii) Explain concept of interface in component diagram. [4] Interface : An interface is a collection of operations that specifies a service of a class or component. An interface therefore describes the externally visible behavior of that element. In interface might represent the complete behavior of a class or component or only a part of that behavior. An interface defines a set of operation specification (that is, their sing), but never set of operation implementation. The declaration of an interface looks like a class with the keyword <<interface>> above the name; attributes are not relevant, except sometimes to show constant. An interface provided by a class to the outside world is shown as a small circle attached to the class box by a line. An interface required by a class from some other class is shown as a small semicircle attached to the class box by a line, as in Figure /TY/Pre_Pap/2015/CP/Comp/OOMD_Soln 1

2 : T.Y. Diploma OOMD Fig. 4: Interfaces Q.1(a) (iii)explain swim lane activity diagram with example. [4] Swimlane : We use partitions to show which participant is responsible for which actions. Partitions divide the diagram into columns or rows (depending on the orientation of your activity diagram) and contain actions that are carried out by a responsible group. The columns or rows are sometimes referred to as swimlanes. Q.1(a) (iv) Define multiplicity and qualification of class diagram. [4] Multiplicity : It is the active logical association when the cardinality of a class in relation to another is being depicted. It is also called as cardinality. For example, one fleet may include multiple airplanes, while one commercial airplane may contain zero to many passengers. The notation 0..* in the diagram means "zero to many", (See Figure 22). Fig. 22 Qualified Association The qualifier is a special attribute that reduced the effective multiplicity of an association. A qualified association is the UML equivalent of a programming concept variously known as associative arrays, maps and dictionaries. Figure shows a way of representing the association between the Order and Order Line classes that uses a qualifier. The qualifier says that in connection with an Order, there may be one Order Line for each instance of Product. 2

3 Prelim Question Paper Solution Q.1(b) Attempt any ONE of the following [6] Q.1(b) (i) Draw activity diagram for vending machine. [6] Fig. 1 : Activity diagram for issuing book to member. 3

4 : T.Y. Diploma OOMD Fig.2 : Activity diagram for returning book. 4 Fig. 3 : Activity diagram for vending machine.

5 Prelim Question Paper Solution Fig.4 : Activity diagram for lift control system. Q.1(b) (ii) Draw a sequence diagram for landline calling. [6] 5

6 : T.Y. Diploma OOMD Q.2 Attempt any FOUR of the following : [16] Q.2(a) Draw class diagram for library management system. [4] Q.2(b) Explain concept of concurrency in activity diagram. [4] Concurrency It is used to show the parallel or concurrent actions. Steps that occur at the same time are said to occur concurrently or in parallel. Fork has single incoming flow and multiple outing flows. Q.2(c) Draw deployment diagram for ATM. [4] 6

7 Prelim Question Paper Solution Q.2(d) Draw use case diagram for Hospital management system. [4] Q.2(e) Explain the concept of generalization and inheritance with example. [4] Generalization Generalization is an association between the more general classifier and the more special classifier. Inheritance Inheritance is a relationship when a child object or class assumes all properties of his parent object or class. Q.2(f) Draw and explain notation of deployment diagram. [4] Deployment A deployment is the allocation of an artifact or artifact instance to a deployment target. 7

8 : T.Y. Diploma OOMD Q.3 Attempt any FOUR of the following : [16] Q.3(a) Draw sequence diagram for library Management system. [4] Q.3(b) Draw a state chart diagram for ATM machine. [4] 8

9 Prelim Question Paper Solution Q.3(c) Draw object diagram for online shopping. [4] Q.3(d) Explain SDLC in UML. [4] Inception is the first phase of the process, when the seed idea for the development is brought up to the point of being at least internally sufficiently well-founded to warrant entering into the elaboration phase. Elaboration is the second phase of the process, when the product requirements and architecture are defined. In this phase, the requirements are articulated, prioritized, and baselined. A system's requirements may range from general vision statements to precise evaluation criteria, each specifying particular functional or nonfunctional behavior and each providing a basis for testing. Construction is the third phase of the process, when the software is brought from an executable architectural baseline to being ready to be transitioned to the user community. Here also, the system's requirements and especially its evaluation criteria are constantly reexamined against the business needs of the project, and resources are allocated as appropriate to actively attack risks to the project. Transition is the fourth phase of the process, when the software is delivered to the user community. Rarely does the software development process end here, for even during this phase, the system is continuously improved, bugs are eradicated, and features that didn't make an earlier release are added. One element that distinguishes this process and that cuts across all four phases is an iteration. An iteration is a distinct set of work tasks, with a baselined plan and evaluation criteria that results in an executable system that can be run, tested, and evaluated. The executable system need not be released externally. Because the iteration yields an executable product, progress can be judged and risks can be reevaluated after each iteration. This 9

10 : T.Y. Diploma OOMD means that the software development life cycle can be characterized as involving a continuous stream of executable releases of the system's architecture with a midcourse correction after each iteration to mitigate potential risk. It is this emphasis on architecture as an important artifact that drives the UML to focus on modeling the different views of a system's architecture. Q.3(e) Explain include and extend in use case with example. [4] Aggregation Aggregation is an association with the relation between the whole and its parts, the relation when one class is a certain entity that includes the other entities as components. Q.4(a) Attempt any THREE of the following : [12] Q.4(a) (i) Draw activity diagram for online railway reservation system. [4] 10

11 Prelim Question Paper Solution Q.4(a) (ii) Draw component diagram for online shopping. [4] Q.4(a) (iii)explain the concept of ports and connectors in component diagram. [4] Specifies a distinct interaction point Between that component and its environment Between that component and its internal parts Is shown as a small square symbol Ports can be named, and the name is placed near the square symbol Is associated with the interfaces that specify the nature of the interactions that may occur over a port Ports can support unidirectional communication or bi-directional communication 11

12 : T.Y. Diploma OOMD If there are multiple interfaces associated with a port, these interfaces may be listed with the interface icon, separated by a commas All interactions of a component with its environment are achieved through a port The internals are fully isolated from the environment This allows such a component to be used in any context that satisfies the constraints specified by its ports Ports are not defined in UML 1.x Q.4(a) (iv) Discuss Role name, Constraint, Ordering. [4] Role Names : Role names for an association A role is one end of association. A role name is a name written at one end of association. Figure shows role names for an association. A person assumes the role of employee with respect to a company and a company assumes the role of employer with respect to a person. A role name is written next to the association line near the class that plays the role. Some points regarding role names: 1. Role names are necessary for association between two objects of the same class. 2. It is useful to distinguish between two associations of same air of classes. 3. All role names on the far end of associations attached to the class must be unique. 4. It is really a derived attribute of the source class. So it should be unique. 5. No role name should be same as an attribute name of the source class. 6. Role name do not represent derived attributes of the participating classes. Constraints A constraint is a condition that every implementation of the design must satisfy. Constraints can be placed on any kind of model element. A UML constraint is a restriction or condition on a UML element. They are written in curly braces { }. For example: { size >= 0 }. 12

13 Prelim Question Paper Solution Constraints on Objects Constraints are functional relationships between entities of an object model. The term entity includes objects, classes, attributes, links and associations. A constraint restricts the values that entities can assume. A constraint is a rule for a model element. For example, no employee's salary can exceed the salary of the employee s boss (a constraints between two things at the same time). No window will have an aspect ratio (length/width) of less than 0.8 or greater than 1.5 (a constraint between properties of a single object). The priority of a job may not increase (constraint on the same object overtime). Figure explains these examples. Simple constraints may be placed in object models. Complex constraints should be specified in the functional model. Constraints on Object Constraints should be expressed in a declarative manner. Usually, constraints should be converted to procedural form before they can be stated in a programming language. Ideally the conversion should be automatic which can be difficult or impossible to achieve. Object model capture some constraints through their very structure. For example, single inheritance implies that subclasses are mutually exclusive. Constraints provide one of the criterion for measuring the quality of an object model. A good object model captures many constraints through its structure. If often requires several iterations to get the structure of a model right from the prospective of constraints. To accomplish more and more structural constraints, object modeling notation must be accompanied with all kinds of special constructs. There will always be constraints that must be expressed in natural languages. Constraints are delimited by braes and positioned near the constrained entity. A dotted line connect multiple constrained entities. An arrow may be used to connect a constrained entity to the entity it depends on Instantiation is a kind of constraints and therefore uses the same notation. Ordering : Ordering is a special kind of facility available in OMD, Usually, the object on the 'many' side of (Side) an association have no external order. It can be considered as a set. Sometimes, the objects are externally ordered. Such kind of externally ordered objects are denoted by writing (ordered) on the many end of an association i.e. next to the multiplicity dot for the role. Role names for an association Figure shows example of ordering. The windows are externally ordered, so only topmost window is visible at any point on the screen. 13

14 : T.Y. Diploma OOMD Q.4(b) Attempt any ONE of the following : [6] Q.4(b) (i) Explain orthogonal State diagram. [6] Q.4(b) (ii) Draw state diagram for online movie reservation system. [6] 14

15 Prelim Question Paper Solution Q.5 Attempt any TWO of the following : [16] Q.5(a) What is primary and secondary actors in use case? Draw a usecase diagram for [8] hotel management system. Q.5(b) Draw non orthogonal State diagram for ATM system. [8] 15

16 : T.Y. Diploma OOMD Q.5(c) Explain conceptual model of UML. [8] Conceptual Model of UML To understand conceptual model of UML first we need to clarify What is a conceptual model? and Why a conceptual model is at all required? A conceptual model can be defined as "a model which is made of concepts and their relationships". A conceptual model is the first step before drawing a UML diagram. It helps to understand the entities in the real world and how they interact with each other. To understand the UML, you need to form a conceptual model of the language and this requires learning three major elements: 1. The UML's basic building blocks, 2. The rules that dictate how those building blocks may be put together and 3. Some common mechanisms that apply throughout the UML 1. Building Blocks of the UML : The vocabulary of the UML encompasses three kinds of building blocks: (i) Things, (ii) Relationships, and (iii) Diagrams. Things are the abstractions that are first class citizens in a model; relationships tie these things together; diagrams group interesting collections of things. Things in the UML : Things are the basic elements in a model in OO. In UML, there are four kind of things i.e. Structural things, Behavioural things, Grouping things and Annotational things as shown in Figure 2. Fig. 2 : Things in UML These things are the basic objects oriented buildings blocks of the UML. You use them to write well formed models. (a) Structural Things: Structural things represent a conceptual or physical element. These things are nouns of UML models. Structural things are the static parts of model. Some structural things are listed below: 16

17 Prelim Question Paper Solution (i) Class : A class is a description of a set of object that shares the same attributes, operation, relationship and semantics. A class implements one or more interfaces. Graphically, a class is represented with rectangle. The rectangle includes name, attributes and operations as shown in Figure 3. Fig. 3 : Class (ii) Interface : An interface is a collection of operations that specifies a service of a class or component. An interface therefore describes the externally visible behavior of that element. In interface might represent the complete behavior of a class or component or only a part of that behavior. An interface defines a set of operation specification (that is, their sing), but never set of operation implementation. The declaration of an interface looks like a class with the keyword <<interface>> above the name; attributes are not relevant, except sometimes to show constant. An interface provided by a class to the outside world is shown as a small circle attached to the class box by a line. An interface required by a class from some other class is shown as a small semicircle attached to the class box by a line, as in Figure 4. Fig. 4: Interfaces (iii) Collaboration : Collaboration defines an interaction and is a society of roles and other elements that work together to provide some cooperative behavior that's bigger than the sum of all the elements. Collaboration has structural, as well as behavioral, dimensions. A given class or object might participate in several collaboration. Graphically, collaborations are rendered as an ellipse with dashed lines, sometimes including only its name, as shown in Figure 5. 17

18 : T.Y. Diploma OOMD Fig. 5 : Collaborations (iv) Use Case : A use case is a description of sequences of action that a system performs that yield observable results of value to a particular actor. A use case is used to structure the behavioral things in a model. A use case is realized by collaboration. Graphically, a use case is rendered as an ellipse with solid lines, usually including only its name, as shown in figure 6. Fig. 6 : Use cases (v) Active Class : An active class is a class whose objects own one or more processes or threads and therefore, can initiate control activity. An active classes just like a class except that its objects represent elements whose behavior is concurrent with other elements. Graphically, it is represented as class only along with dark lines as shown in Figure 7. Fig. 7 : Active Classes (vi) Component : A component is a modular part of the system design that hides its implementation behind a set of external interfaces. Within a system, component sharing the same interfaces can be substituted while preserving the same logical behavior. The implementation of a component can be expressed by wiring together parts and connectors. The parts can include smaller components. Graphically, a component is shown at the upper right corner as shown in Figure 8. Fig. 8: Components 18

19 Prelim Question Paper Solution (vii) Artifacts : The artifacts represent physical things, whereas the previous five things represent conceptual or logical things. An artifact is a physical and replaceable part of a system that contains physical information. In a system, you will encounter different kinds of deployment artifacts, such as source code files, executables, script etc. An artifact typically represents the physical packaging of source or run-time information. Graphically, an artifact is as a rectangle with the keywords <<artifact>> above the name is shown in Figure 9. Fig. 9 : Artifacts (viii) Node : A node is a physical element that exists at run time and represents a computational resource, generally having at least some memory and often, processing capability. A set of component may reside on a node and may also migrate from node to node. Graphically, a node is shown as a cube, usually including only its name, as in Figure 10. Fig. 10 : Nodes (b) Behavioral Things: Behavioral things are the dynamic parts of UML models. These are the verbs of a model, representing behavior over time and space. In all, there are three kinds of behavioral things as given below : (i) Messages : First an interaction is a behavior that comprises a set of messages exchanged among a set of object of roles within a particular context to accomplish a specific purpose. An interaction involves a number of other elements, including messages, actions and connectors. Graphically, a message is rendered a directed line, almost always including the name of its operation, as in Figure 11. Fig. 11 : Messages 19

20 : T.Y. Diploma OOMD (ii) State: It is a behavior that specific the sequences of state an object or an interaction goes through during its lifetime in response it events, together with its responses to those events. The behavior of an individual class or a collaboration of classes may be specified with a state machine. A state machine involves a number of other elements, including states, transition. Graphically, a state is rendered as a rounded rectangle, usually including its name shown in figure 12. Fig.12 : States (iii) Activity: It is a behavior that specifies the sequences of steps a computational process perform. In an interaction, the focus is on the set of objects that interact. In a state machine, the focus is on the life cycle of one object at a time. In an activity, the focus is on the flows among steps without regard to which object performs each step. A step of an activity is called an action. Graphically, an action is rendered as a rounded rectangle with a name indicating its purpose. States and actions are distinguished by their different contexts. Fig. 13 : Actions (c) Grouping Things: Grouping things are the organizational parts of UML models. These are the boxes into which a model can be decomposed. There is one primary kind of grouping thing namely, packages. (i) Package : A Package is a general purpose mechanism for organizing the design itself, as opposed to classes, which organize implementation constructs. Structural things, behavioral things and even other grouping things may be placed in a package. A package is purely conceptual. Graphically, a package is rendered as a tabbed folder, usually including only its name and sometimes, its contents, as in Figure 14. Fig. 14 : Packages 20

21 Prelim Question Paper Solution (d) Annotational Things: Annotational things are the explanatory parts of UML models. There is one primary kind of annotational thing, called a note. (i) Note : A note is simply a symbol for rendering constrains and comments attached to an element or a collection of elements. Graphically, a note is rendered as a rectangle with a dog eared corner, together with textual or graphical comments, as in Figure 15. Fig. 15 : Notes 2. Relationships in the UML : Relationship is another most important building block of UML. Relationship shows how elements are associated with each other and this association (linked) describes the functionality of an application. In short, a relationship is a connection among things. There are four kinds of relationships in the UML, i.e., Dependency, Association, Generalization and Realization. These relationships are explained below: (i) Dependency : Dependency is a semantic relationship. Dependency is a relationship between two things in which change in one element also affects the other one. Dependency states that a change in specification of one thing (independent thing) may effect another thing (depending thing) that uses it, but not the reverse. Graphically, dependency relationship is represented with a dashed line with an arrow. For example, in the Figure 16, the FlimClip class is depending on the channel class. The dependency relationship is shown using the dashed or dotted line starting from FilmClip class and ending in the Channel class with an arrow pointing to it. Fig.16 : Dependency (ii) Association: Association is a structural relationship that describes a set of links, and a link is connection between objects. Association relationship is used when we want to show structural relationship. Association is basically a set of links that connects elements of an UML model. It also describes how many objects are taking part in that relationship. Graphically, association is represented as a solid line, (See Figure 17). For example, Figure 17 shows linking of Airplane and passenger. 21

22 : T.Y. Diploma OOMD Fig. 17 : Dependency (iii) Generalization: A generalization is a relationship between a general thing i.e. super class or parent class and a specific thing i.e. sub-class or child class. It is similar to the concept of inheritance in OOP's. Generalization can be defined as "a relationship which connects a specialized element with a generalized element." It basically describes inheritance relationship in the world of objects. It is known as an "is a" relationship since the child class is a type of the parent class. Generalization is the ideal type of relationship that is used to showcase reusable elements in the class diagram. Literally, the child classes "inherit" the common functionality defined in the parent class. Graphically, generalization relationship is shown as a solid line with a hollow arrowhead pointing towards parent as shown in Figure 18. Fig.18 : Generalization (iv) Realization : It is a semantic relationship between classifiers, wherein one classifier specifies a contract that another classifier guarantees to carry out. Realization can be defined as "a relationship in which two elements are connected". One element describes some responsibility which is not implemented and the other one implements them. This relationship exists in case of interfaces. Graphically, a realization relationship is rendered as a cross between a generalization and a dependency relationship, as in Figure 19. In the Figure 19, printing preferences that are set using the printer setup interface are being implemented by the printer. 22 Fig. : 19

23 Prelim Question Paper Solution (v) Aggregation : It refers to the formation of a particular class as a result of one class being aggregated or built as a collection. For example, the class library is made up of one or more books, among other materials. In aggregation, the contained classes are not strongly dependent on the life cycle of the container. In the same example of figure 20, books will remain so even when the library is dissolved. To render aggregation graphically in a diagram, draw a line from the parent class to the child class with a diamond shape near the parent class. Fig. 20 (vi) Composition: It is very similar to the aggregation relationship, with the only difference being its key purpose of emphasizing the dependence of the contained class to the life cycle of the container class. That is, the contained class will be obliterated when the container class is destroyed. For example, a shoulder bag's side pocket will also cease to exist once the shoulder bag is destroyed. To depict a composition relationship in a UML diagram, use a directional line connecting the two classes, with a filled diamond shape (See Figure 21), adjacent to the container class and the directional arrow to the contained class. Fig. 21 (vii) Multiplicity : It is the active logical association when the cardinality of a class in relation to another is being depicted. It is also called as cardinality. For example, one fleet may include multiple airplanes, while one commercial airplane may contain zero to many passengers. The notation 0..* in the diagram means "zero to many", (See Figure 22). Fig

24 : T.Y. Diploma OOMD 3. Diagrams in the UML : A diagram is the graphical presentation of a set of elements, most often rendered as a connected graph of vertices (things) and arcs (relationships). A diagram is a projection into a system. UML diagrams are the ultimate output of the entire discussion of above topics. All the elements, relationships are used to make a complete UML diagram and the diagram represents a system. There are three classification of UML diagrams : (i) Behavior Diagrams: A type of diagram that depicts behavioral features of a system or business process. These diagrams shows what should happen in a system. They describe how the objects interact with each other to create a functioning system. This diagrams includes activity, state machine, and use case diagrams as well as the four interaction diagrams. (ii) Interaction Diagrams: A subset of behavior diagrams which emphasize object interactions. This diagrams includes communication, interaction overview, sequence and timing diagrams. (iii)structure Diagrams: A type of diagram that depicts the elements of a specification that are irrespective of time. These diagram shows the things in a system being model. This diagrams includes class, composite structure, component, deployment, object, and package diagrams. The UML includes nine such diagrams: 1. Class Diagram : A structural diagram that shows a set of classes, interfaces, collaborations and their relationships. 2. Object Diagram : A structural diagram that shows a set of objects and their relationships. 3. Use case Diagram : A behavioral diagram that shows a set of use cases and actors and their relationships. 4. Sequence Diagram : A behavioral diagram that shows an interaction, emphasizing the time ordering of messages. 5. Collaboration Diagram : A behavioral diagram that shows an interaction, emphasizing the structural organization of the objects that send and receive messages. 6. State Chart Diagram : A behavioral diagram that shows a state machine, emphasizing the event ordered behavior of an object. 7. Activity Diagram : A behavioral diagram that shows a state machine, emphasizing the flow from activity to activity. 8. Component Diagram : A structural diagram that shows a set of components and their relationships. Q.6 Attempt any FOUR of the following : [16] Q.6(a) Discuss in brief OMT by Rambaugh [4] Brief Overview of OMT by Rumbaugh OMT describes a method for the analysis, design and implementation of a system using an object-oriented technique. OMT was developed as an approach to software development. A fundamental assumption of OMT is that object-oriented thinking represents a more natural and intuitive way for people to reason about reality. 24

25 Prelim Question Paper Solution OMT is also a widely popular and comprehensive approach that exemplifies the vast number of object-oriented approaches to modeling. The purposes of modeling according to Rumbaugh are : 1. Testing physical entities before building them (simulation) 2. Communication with customers, 3. Visualization, (alternative presentation of information) and 4. Reduction of complexity. As a general modeling approach, OMT may be used to model all types of work. OMT proposes three main types of models i.e., Object model, Dynamic model, and functional model, (see figure 1) Fig. 1 : OMT Models Q.6(b) What do you mean by artifacts in deployment diagram? [4] Artifacts : The artifacts represent physical things, whereas the previous five things represent conceptual or logical things. An artifact is a physical and replaceable part of a system that contains physical information. In a system, you will encounter different kinds of deployment artifacts, such as source code files, executables, script etc. An artifact typically represents the physical packaging of source or run-time information. Graphically, an artifact is as a rectangle with the keywords <<artifact>> above the name is shown in Figure 9. Fig. 9 : Artifacts 25

26 : T.Y. Diploma OOMD Q.6(c) Draw class diagram for bank system [4] Q.6(d) Draw component diagram for airline reservation system [4] 26

27 Prelim Question Paper Solution Q.6(e) Draw swim lane activity diagram for setting exam paper. [4] 27

Object Oriented Modeling and Design

Object Oriented Modeling and Design T.Y. Diploma : Sem. VI [IF/CM] Object Oriented Modeling and Design Time: 3 Hrs.] Prelim Question Paper Solution [Marks : 100 Q.1 Attempt any FIVE of the following [20] Q.1(a) Explain four stages of OMT

More information

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION (Autonomous) (ISO/IEC Certified) MODEL ANSWER

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION (Autonomous) (ISO/IEC Certified) MODEL ANSWER Important Instructions to examiners: 1) The answers should be examined by key words and not as word-to-word as given in the model answer scheme. 2) The model answer and the answer written by candidate

More information

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION (Autonomous) (ISO/IEC Certified)

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION (Autonomous) (ISO/IEC Certified) Subject Code: 17630 Model Answer Page No: 1 /32 Important Instructions to examiners: 1) The answers should be examined by keywords and not as word-to-word as given in the model answer scheme. 2) The model

More information

INTRODUCING THE UML. Chapter 2

INTRODUCING THE UML. Chapter 2 chap02.fm Page 13 Friday, October 27, 2000 10:26 AM Chapter 2 INTRODUCING THE UML In this chapter Overview of the UML Three steps to understanding the UML Software architecture The software development

More information

UNIT-I Introduction of Object Oriented Modeling

UNIT-I Introduction of Object Oriented Modeling UNIT-I Introduction of Object Oriented Modeling - Prasad Mahale Object Oriented Modeling and Reference Books: Design 1. Grady Booch, James Rumbaugh, Ivar Jacobson Unified Modeling Language User Guide,

More information

Introduction to UML Dr. Rajivkumar S. Mente

Introduction to UML Dr. Rajivkumar S. Mente Introduction to UML Dr. Rajivkumar S. Mente Assistant Professor, Department of Computer Science, Solapur University, Solapur rajivmente@rediffmail.com Introduction to UML UML is a language used for 1.

More information

UNIT-II Introduction to UML

UNIT-II Introduction to UML UNIT-II Introduction to UML - P. P. Mahale UML OVERVIEW OF UML :- We need a Modeling Language! We will use the Unified Modeling Language, UML), Provides a standard for artifacts produced during development

More information

UNIT II. Syllabus. a. An Overview of the UML: Visualizing, Specifying, Constructing, Documenting

UNIT II. Syllabus. a. An Overview of the UML: Visualizing, Specifying, Constructing, Documenting UNIT II Syllabus Introduction to UML (08 Hrs, 16 Marks) a. An Overview of the UML: Visualizing, Specifying, Constructing, Documenting b. Background, UML Basics c. Introducing UML 2.0 A Conceptual Model

More information

Allenhouse Institute of Technology (UPTU Code : 505) OOT Notes By Hammad Lari for B.Tech CSE V th Sem

Allenhouse Institute of Technology (UPTU Code : 505) OOT Notes By Hammad Lari for B.Tech CSE V th Sem UNIT-1 ECS-503 Object Oriented Techniques Part-1: Object-Oriented Programming Concepts What Is an Object? Objects are key to understanding object-oriented technology. Look around right now and you'll find

More information

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION (Autonomous) (ISO/IEC Certified)

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION (Autonomous) (ISO/IEC Certified) Important Instructions to examiners: 1) The answers should be examined by key words and not as word-to-word as given in the model answer scheme. 2) The model answer and the answer written by candidate

More information

Chapter No. 2 Class modeling CO:-Sketch Class,object models using fundamental relationships Contents 2.1 Object and Class Concepts (12M) Objects,

Chapter No. 2 Class modeling CO:-Sketch Class,object models using fundamental relationships Contents 2.1 Object and Class Concepts (12M) Objects, Chapter No. 2 Class modeling CO:-Sketch Class,object models using fundamental relationships Contents 2.1 Object and Class Concepts (12M) Objects, Classes, Class Diagrams Values and Attributes Operations

More information

A Conceptual Model of the UML

A Conceptual Model of the UML CONTENT A Conceptual Model of the UML Building Blocks of the UML 1. Things [1.1] Structural Things (1.1.1) Class (1.1.2) Interface (1.1.3) Collaboration: (1.1.4) Use case (1.1.5) Components: (1.1.6) Node:

More information

LABORATORY 1 REVISION

LABORATORY 1 REVISION UTCN Computer Science Department Software Design 2012/2013 LABORATORY 1 REVISION ================================================================== I. UML Revision This section focuses on reviewing the

More information

Introduction to UML. Danang Wahyu utomo

Introduction to UML. Danang Wahyu utomo Introduction to UML Danang Wahyu utomo danang.wu@dsn.dinus.ac.id 085 740 955 623 Evolution of OO Development Methods History of OOAD leading to UML Why Model? Analyse the problem domain - Simplify reality

More information

Basic Structural Modeling. Copyright Joey Paquet,

Basic Structural Modeling. Copyright Joey Paquet, Basic Structural Modeling Copyright Joey Paquet, 2000 1 Part I Classes Copyright Joey Paquet, 2000 2 Classes Description of a set of objects sharing the same attributes, operations and semantics Abstraction

More information

Interactions A link message

Interactions A link message Interactions An interaction is a behavior that is composed of a set of messages exchanged among a set of objects within a context to accomplish a purpose. A message specifies the communication between

More information

UNIT-4 Behavioral Diagrams

UNIT-4 Behavioral Diagrams UNIT-4 Behavioral Diagrams P. P. Mahale Behavioral Diagrams Use Case Diagram high-level behaviors of the system, user goals, external entities: actors Sequence Diagram focus on time ordering of messages

More information

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION (Autonomous) (ISO/IEC Certified) MODEL ANSWER

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION (Autonomous) (ISO/IEC Certified) MODEL ANSWER Important Instructions to examiners: 1) The answers should be examined by key words and not as word-to-word as given in the model answer scheme. 2) The model answer and the answer written by candidate

More information

CHAPTER 5 CO:-Sketch component diagram using basic notations 5.1 Component Diagram (4M) Sample Component Diagram 5.2 Deployment Diagram (8M)

CHAPTER 5 CO:-Sketch component diagram using basic notations 5.1 Component Diagram (4M) Sample Component Diagram 5.2 Deployment Diagram (8M) CHAPTER 5 CO:-Sketch component diagram using basic notations 5.1 Component Diagram (4M) Sample Component Diagram 5.2 Deployment Diagram (8M) Sample Deployment diagram Component diagrams are different in

More information

Lab Manual. Object Oriented Analysis And Design. TE(Computer) VI semester

Lab Manual. Object Oriented Analysis And Design. TE(Computer) VI semester Lab Manual Object Oriented Analysis And Design TE(Computer) VI semester Index Sr. No. Title of Programming Assignment Page No. 1 2 3 4 5 6 7 8 9 10 Study of Use Case Diagram Study of Activity Diagram Study

More information

Vidyalankar. T.Y. Diploma : Sem. VI [IF/CM] Object Oriented Modeling and Design Prelim Question Paper

Vidyalankar. T.Y. Diploma : Sem. VI [IF/CM] Object Oriented Modeling and Design Prelim Question Paper 1. (a) T.Y. Diploma : Sem. VI [IF/CM] Object Oriented Modeling and Design Prelim Question Paper (i) Describe Booch Methodology It is a widely used object-oriented method that helps us design a system.

More information

Lesson 11. W.C.Udwela Department of Mathematics & Computer Science

Lesson 11. W.C.Udwela Department of Mathematics & Computer Science Lesson 11 INTRODUCING UML W.C.Udwela Department of Mathematics & Computer Science Why we model? Central part of all the activities We build model to Communicate Visualize and control Better understand

More information

A - 1. CS 494 Object-Oriented Analysis & Design. UML Class Models. Overview. Class Model Perspectives (cont d) Developing Class Models

A - 1. CS 494 Object-Oriented Analysis & Design. UML Class Models. Overview. Class Model Perspectives (cont d) Developing Class Models CS 494 Object-Oriented Analysis & Design UML Class Models Overview How class models are used? Perspectives Classes: attributes and operations Associations Multiplicity Generalization and Inheritance Aggregation

More information

UNIT 5 - UML STATE DIAGRAMS AND MODELING

UNIT 5 - UML STATE DIAGRAMS AND MODELING UNIT 5 - UML STATE DIAGRAMS AND MODELING UML state diagrams and modeling - Operation contracts- Mapping design to code UML deployment and component diagrams UML state diagrams: State diagrams are used

More information

Software Service Engineering

Software Service Engineering Software Service Engineering Lecture 4: Unified Modeling Language Doctor Guangyu Gao Some contents and notes selected from Fowler, M. UML Distilled, 3rd edition. Addison-Wesley Unified Modeling Language

More information

UML Tutorial. Unified Modeling Language UML Tutorial

UML Tutorial. Unified Modeling Language UML Tutorial UML Tutorial Unified Modeling Language UML Tutorial A Unified Modeling Language is a language for specifying, constructing, visualizing and documenting the software system and its components. UML is a

More information

Practical UML - A Hands-On Introduction for Developers

Practical UML - A Hands-On Introduction for Developers Practical UML - A Hands-On Introduction for Developers By: Randy Miller (http://gp.codegear.com/authors/edit/661.aspx) Abstract: This tutorial provides a quick introduction to the Unified Modeling Language

More information

Introduction to Software Engineering. 5. Modeling Objects and Classes

Introduction to Software Engineering. 5. Modeling Objects and Classes Introduction to Software Engineering 5. Modeling Objects and Classes Roadmap > UML Overview > Classes, attributes and operations > UML Lines and Arrows > Parameterized Classes, Interfaces and Utilities

More information

Advanced Software Engineering

Advanced Software Engineering Dev Bhoomi Institute Of Technology LABORATORY MANUAL PRACTICAL INSTRUCTION SHEET EXPERIMENT NO. ISSUE NO. : ISSUE DATE: REV. NO. : REV. DATE : PAGE: 1 LABORATORY Name & Code: Advanced Software Engineering

More information

OO Techniques & UML Class Diagrams

OO Techniques & UML Class Diagrams OO Techniques & UML Class Diagrams SE3A04 Tutorial Jason Jaskolka Department of Computing and Software Faculty of Engineering McMaster University Hamilton, Ontario, Canada jaskolj@mcmaster.ca October 17,

More information

Introducing the UML Eng. Mohammed T. Abo Alroos

Introducing the UML Eng. Mohammed T. Abo Alroos Introducing the UML Eng. Mohammed T. Abo Alroos Islamic University of Gaza Introduction to the UML: The UML stands for Unified Modeling Language. It was released in 1997 as a method to diagram software

More information

Pertemuan 8. Object Oriented Modeling and Design

Pertemuan 8. Object Oriented Modeling and Design Pertemuan 8 Object Oriented Modeling and Design References Rumbaugh, James et al., Object Oriented Modeling and Design, 1991, Prentice Hall, Inc., USA, ISBN: 0 13 629841 9 9 Coad, Peter and Yourdon, Edward,

More information

Practical UML : A Hands-On Introduction for Developers

Practical UML : A Hands-On Introduction for Developers Borland.com Borland Developer Network Borland Support Center Borland University Worldwide Sites Login My Account Help Search Practical UML : A Hands-On Introduction for Developers - by Randy Miller Rating:

More information

Unified Modeling Language

Unified Modeling Language Unified Modeling Language Modeling Applications using Language Mappings Programmer s Reference Manual How to use this Reference Card: The consists of a set of fundamental modeling elements which appear

More information

History of object-oriented approaches

History of object-oriented approaches Prof. Dr. Nizamettin AYDIN naydin@yildiz.edu.tr http://www.yildiz.edu.tr/~naydin Object-Oriented Oriented Systems Analysis and Design with the UML Objectives: Understand the basic characteristics of object-oriented

More information

Chapter 2: Entity-Relationship Model

Chapter 2: Entity-Relationship Model Chapter 2: Entity-Relationship Model! Entity Sets! Relationship Sets! Design Issues! Mapping Constraints! Keys! E-R Diagram! Extended E-R Features! Design of an E-R Database Schema! Reduction of an E-R

More information

UNIT-IV BASIC BEHAVIORAL MODELING-I

UNIT-IV BASIC BEHAVIORAL MODELING-I UNIT-IV BASIC BEHAVIORAL MODELING-I CONTENTS 1. Interactions Terms and Concepts Modeling Techniques 2. Interaction Diagrams Terms and Concepts Modeling Techniques Interactions: Terms and Concepts: An interaction

More information

Structured and Object Oriented Analysis and Design

Structured and Object Oriented Analysis and Design RAMRAO ADIK INSTITUTE OF TECHNOLOGY, NERUL Department of Computer Engineering Lab Manual Structured and Object Oriented Analysis and Design 2015-2016 List of Experiments Subject: Structured and object

More information

SOFTWARE DESIGN COSC 4353 / Dr. Raj Singh

SOFTWARE DESIGN COSC 4353 / Dr. Raj Singh SOFTWARE DESIGN COSC 4353 / 6353 Dr. Raj Singh UML - History 2 The Unified Modeling Language (UML) is a general purpose modeling language designed to provide a standard way to visualize the design of a

More information

Lecture Notes UML UNIT-II. Subject: OOAD Semester: 8TH Course No: CSE-802

Lecture Notes UML UNIT-II. Subject: OOAD Semester: 8TH Course No: CSE-802 UNIT-II Lecture Notes On UML IMPORTANCE OF MODELING, BRIEF OVERVIEW OF OBJECT MODELING TECHNOLOGY (OMT) BY RAMBAUGH, BOOCH METHODOLOGY, USE CASE DRIVE APPROACH (OOSE) BY JACKOBSON. KHALID AMIN AKHOON 1

More information

Chapter 5: Structural Modeling

Chapter 5: Structural Modeling Chapter 5: Structural Modeling Objectives Understand the rules and style guidelines for creating CRC cards, class diagrams, and object diagrams. Understand the processes used to create CRC cards, class

More information

Introduction. Chapter 1. What Is Visual Modeling? The Triangle for Success. The Role of Notation. History of the UML. The Role of Process

Introduction. Chapter 1. What Is Visual Modeling? The Triangle for Success. The Role of Notation. History of the UML. The Role of Process Quatrani_Ch.01.fm Page 1 Friday, October 27, 2000 9:02 AM Chapter 1 Introduction What Is Visual Modeling? The Triangle for Success The Role of Notation History of the UML The Role of Process What Is Iterative

More information

SOFTWARE ENGINEERING UML FUNDAMENTALS. Saulius Ragaišis.

SOFTWARE ENGINEERING UML FUNDAMENTALS. Saulius Ragaišis. SOFTWARE ENGINEERING UML FUNDAMENTALS Saulius Ragaišis saulius.ragaisis@mif.vu.lt Information source Slides are prepared on the basis of Bernd Oestereich, Developing Software with UML: Object- Oriented

More information

Credit where Credit is Due. Lecture 4: Fundamentals of Object Technology. Goals for this Lecture. Real-World Objects

Credit where Credit is Due. Lecture 4: Fundamentals of Object Technology. Goals for this Lecture. Real-World Objects Lecture 4: Fundamentals of Object Technology Kenneth M. Anderson Object-Oriented Analysis and Design CSCI 6448 - Spring Semester, 2003 Credit where Credit is Due Some material presented in this lecture

More information

Chapter 10. Object-Oriented Analysis and Modeling Using the UML. McGraw-Hill/Irwin

Chapter 10. Object-Oriented Analysis and Modeling Using the UML. McGraw-Hill/Irwin Chapter 10 Object-Oriented Analysis and Modeling Using the UML McGraw-Hill/Irwin Copyright 2007 by The McGraw-Hill Companies, Inc. All rights reserved. Objectives 10-2 Define object modeling and explain

More information

UNIT I. 3. Write a short notes on process view of 4+1 architecture. 4. Why is object-oriented approach superior to procedural approach?

UNIT I. 3. Write a short notes on process view of 4+1 architecture. 4. Why is object-oriented approach superior to procedural approach? Department: Information Technology Questions Bank Class: B.E. (I.T) Prof. Bhujbal Dnyaneshwar K. Subject: Object Oriented Modeling & Design dnyanesh.bhujbal11@gmail.com ------------------------------------------------------------------------------------------------------------

More information

Object-Oriented Systems Analysis and Design Using UML

Object-Oriented Systems Analysis and Design Using UML 10 Object-Oriented Systems Analysis and Design Using UML Systems Analysis and Design, 8e Kendall & Kendall Copyright 2011 Pearson Education, Inc. Publishing as Prentice Hall Learning Objectives Understand

More information

Class modelling (part 2)

Class modelling (part 2) Class modelling (part 2) Fabrizio Maria Maggi Institute of Computer Science (these slides are derived from the book Object-oriented modeling and design with UML ) Qualified Associations What is the meaning

More information

Object-Oriented Systems Development: Using the Unified Modeling Language

Object-Oriented Systems Development: Using the Unified Modeling Language Object-Oriented Systems Development: Using the Unified Modeling Language Chapter 5: Unified Modeling Language Goals Modeling. Unified modeling language. Class diagram. Use case diagram. Interaction diagrams.

More information

Object Oriented Modeling

Object Oriented Modeling Overview UML Unified Modeling Language What is Modeling? What is UML? A brief history of UML Understanding the basics of UML UML diagrams UML Modeling tools 2 Modeling Object Oriented Modeling Describing

More information

Object Oriented Design. Program Design. Analysis Phase. Part 2. Analysis Design Implementation. Functional Specification

Object Oriented Design. Program Design. Analysis Phase. Part 2. Analysis Design Implementation. Functional Specification Object Oriented Design Part 2 Analysis Design Implementation Program Design Analysis Phase Functional Specification Completely defines tasks to be solved Free from internal contradictions Readable both

More information

UML- a Brief Look UML and the Process

UML- a Brief Look UML and the Process UML- a Brief Look UML grew out of great variety of ways Design and develop object-oriented models and designs By mid 1990s Number of credible approaches reduced to three Work further developed and refined

More information

administrivia today UML start design patterns Tuesday, September 28, 2010

administrivia today UML start design patterns Tuesday, September 28, 2010 administrivia Assignment 2? promise to get past assignment 1 back soon exam on monday review slides are posted your responsibility to review covers through last week today UML start design patterns 1 Unified

More information

CHAPTER 1. Topic: UML Overview. CHAPTER 1: Topic 1. Topic: UML Overview

CHAPTER 1. Topic: UML Overview. CHAPTER 1: Topic 1. Topic: UML Overview CHAPTER 1 Topic: UML Overview After studying this Chapter, students should be able to: Describe the goals of UML. Analyze the History of UML. Evaluate the use of UML in an area of interest. CHAPTER 1:

More information

Class modelling (part 2)

Class modelling (part 2) Class modelling (part 2) Fabrizio Maria Maggi Institute of Computer Science (these slides are derived from the book Object-oriented modeling and design with UML ) Qualified Associations What is the meaning

More information

UNIT V *********************************************************************************************

UNIT V ********************************************************************************************* Syllabus: 1 UNIT V 5. Package Diagram, Component Diagram, Deployment Diagram (08 Hrs, 16 Marks) Package Diagram: a. Terms and Concepts Names, Owned Elements, Visibility, Importing and Exporting b. Common

More information

Class Diagram. Classes consist of. Note that class diagrams contain only classes, not objects.

Class Diagram. Classes consist of. Note that class diagrams contain only classes, not objects. Class Diagrams UML Class Diagram Classes consist of the class name written in BOLD features attributes and methods user-defined constraints Note that class diagrams contain only classes, not objects. Class

More information

SRI VENKATESWARA COLLEGE OF ENGINERRING AND TECHNOLOGY THIRUPACHUR,THIRUVALLUR UNIT I OOAD PART A

SRI VENKATESWARA COLLEGE OF ENGINERRING AND TECHNOLOGY THIRUPACHUR,THIRUVALLUR UNIT I OOAD PART A SRI VENKATESWARA COLLEGE OF ENGINERRING AND TECHNOLOGY THIRUPACHUR,THIRUVALLUR UNIT I OOAD PART A 1. What is an object? An object is a combination of data and logic; the representation of some realworld

More information

What is a Class Diagram? A diagram that shows a set of classes, interfaces, and collaborations and their relationships

What is a Class Diagram? A diagram that shows a set of classes, interfaces, and collaborations and their relationships Class Diagram What is a Class Diagram? A diagram that shows a set of classes, interfaces, and collaborations and their relationships Why do we need Class Diagram? Focus on the conceptual and specification

More information

What is a Class Diagram? Class Diagram. Why do we need Class Diagram? Class - Notation. Class - Semantic 04/11/51

What is a Class Diagram? Class Diagram. Why do we need Class Diagram? Class - Notation. Class - Semantic 04/11/51 What is a Class Diagram? Class Diagram A diagram that shows a set of classes, interfaces, and collaborations and their relationships Why do we need Class Diagram? Focus on the conceptual and specification

More information

Class diagrams. Modeling with UML Chapter 2, part 2. Class Diagrams: details. Class diagram for a simple watch

Class diagrams. Modeling with UML Chapter 2, part 2. Class Diagrams: details. Class diagram for a simple watch Class diagrams Modeling with UML Chapter 2, part 2 CS 4354 Summer II 2015 Jill Seaman Used to describe the internal structure of the system. Also used to describe the application domain. They describe

More information

UML REFERENCE SHEETS. 2013, 2014 Michael Marking; all rights reserved, including moral rights. Web site:

UML REFERENCE SHEETS. 2013, 2014 Michael Marking; all rights reserved, including moral rights. Web site: UML Reference Sheets 2013, 2014 Michael Marking; all rights reserved, including moral rights. Web site: http://www.tatanka.com/ Revision Information This document was last revised 2014.03.02. The current

More information

Class Diagram. Classes consist of. Note that class diagrams contain only classes, not objects.

Class Diagram. Classes consist of. Note that class diagrams contain only classes, not objects. Class Diagrams UML Class Diagram Classes consist of the class name written in BOLD features attributes and methods user defined constraints Note that class diagrams contain only classes, not objects. Class

More information

COSC 3351 Software Design. An Introduction to UML (I)

COSC 3351 Software Design. An Introduction to UML (I) COSC 3351 Software Design An Introduction to UML (I) This lecture contains material from: http://wps.prenhall.com/esm_pfleeger_softengtp_2 http://sunset.usc.edu/classes/cs577a_2000/lectures/05/ec-05.ppt

More information

1. Introduction to Object Oriented Software Development

1. Introduction to Object Oriented Software Development 1. Introduction to Object Oriented Software Development a) Object: A set of data together with some operations that can be performed on that data. Eg. Bank Account. Data can be account number, name of

More information

Modellistica Medica. Maria Grazia Pia, INFN Genova. Scuola di Specializzazione in Fisica Sanitaria Genova Anno Accademico

Modellistica Medica. Maria Grazia Pia, INFN Genova. Scuola di Specializzazione in Fisica Sanitaria Genova Anno Accademico Modellistica Medica Maria Grazia Pia INFN Genova Scuola di Specializzazione in Fisica Sanitaria Genova Anno Accademico 2002-2003 Lezione 6 UML Introduction Structural diagrams Basics What is? Please explain

More information

Introduction to Software Engineering. 5. Modeling Objects and Classes

Introduction to Software Engineering. 5. Modeling Objects and Classes Introduction to Software Engineering 5. Modeling Objects and Classes Roadmap > UML Overview > Classes, attributes and operations > UML Lines and Arrows > Parameterized Classes, Interfaces and Utilities

More information

S T R U C T U R A L M O D E L I N G ( M O D E L I N G A S Y S T E M ' S L O G I C A L S T R U C T U R E U S I N G C L A S S E S A N D C L A S S D I A

S T R U C T U R A L M O D E L I N G ( M O D E L I N G A S Y S T E M ' S L O G I C A L S T R U C T U R E U S I N G C L A S S E S A N D C L A S S D I A S T R U C T U R A L M O D E L I N G ( M O D E L I N G A S Y S T E M ' S L O G I C A L S T R U C T U R E U S I N G C L A S S E S A N D C L A S S D I A G R A M S ) WHAT IS CLASS DIAGRAM? A class diagram

More information

Software Design Methodologies and Testing. (Subject Code: ) (Class: BE Computer Engineering) 2012 Pattern

Software Design Methodologies and Testing. (Subject Code: ) (Class: BE Computer Engineering) 2012 Pattern Software Design Methodologies and Testing (Subject Code: 410449) (Class: BE Computer Engineering) 2012 Pattern Objectives and outcomes Course Objectives To understand and apply different design methods

More information

SEEM4570 System Design and Implementation Lecture 11 UML

SEEM4570 System Design and Implementation Lecture 11 UML SEEM4570 System Design and Implementation Lecture 11 UML Introduction In the previous lecture, we talked about software development life cycle in a conceptual level E.g. we need to write documents, diagrams,

More information

UML & OO FUNDAMENTALS CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 3 08/30/2011

UML & OO FUNDAMENTALS CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 3 08/30/2011 UML & OO FUNDAMENTALS CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 3 08/30/2011 1 Goals of the Lecture Review the material in Chapter 2 of the Textbook Cover key parts of the UML notation

More information

Object-Oriented and Classical Software Engineering

Object-Oriented and Classical Software Engineering Slide 16.1 Object-Oriented and Classical Software Engineering Seventh Edition, WCB/McGraw-Hill, 2007 Stephen R. Schach srs@vuse.vanderbilt.edu CHAPTER 16 Slide 16.2 MORE ON UML 1 Chapter Overview Slide

More information

06. Analysis Modeling

06. Analysis Modeling 06. Analysis Modeling Division of Computer Science, College of Computing Hanyang University ERICA Campus 1 st Semester 2017 Overview of Analysis Modeling 1 Requirement Analysis 2 Analysis Modeling Approaches

More information

0. Database Systems 1.1 Introduction to DBMS Information is one of the most valuable resources in this information age! How do we effectively and efficiently manage this information? - How does Wal-Mart

More information

Using High-Level Conceptual Data Models for Database Design A Sample Database Application Entity Types, Entity Sets, Attributes, and Keys

Using High-Level Conceptual Data Models for Database Design A Sample Database Application Entity Types, Entity Sets, Attributes, and Keys Chapter 7: Data Modeling Using the Entity- Relationship (ER) Model Using High-Level Conceptual Data Models for Database Design A Sample Database Application Entity Types, Entity Sets, Attributes, and Keys

More information

Course "Softwaretechnik" Book Chapter 2 Modeling with UML

Course Softwaretechnik Book Chapter 2 Modeling with UML Course "Softwaretechnik" Book Chapter 2 Modeling with UML Lutz Prechelt, Bernd Bruegge, Allen H. Dutoit Freie Universität Berlin, Institut für Informatik http://www.inf.fu-berlin.de/inst/ag-se/ Modeling,

More information

UML: Unified Modeling Language

UML: Unified Modeling Language UML: Unified Modeling Language 1 Modeling Describing a system at a high level of abstraction A model of the system Used for requirements and specification Many notations over time State machines Entity-relationship

More information

COMN 1.1 Reference. Contents. COMN 1.1 Reference 1. Revision 1.1, by Theodore S. Hills, Copyright

COMN 1.1 Reference. Contents. COMN 1.1 Reference 1. Revision 1.1, by Theodore S. Hills, Copyright COMN 1.1 Reference 1 COMN 1.1 Reference Revision 1.1, 2017-03-30 by Theodore S. Hills, thills@acm.org. Copyright 2015-2016 Contents 1 Introduction... 2 1.1 Release 1.1... 3 1.2 Release 1.0... 3 1.3 Release

More information

Unit Wise Questions. Unit-1 Concepts

Unit Wise Questions. Unit-1 Concepts Unit Wise Questions Unit-1 Concepts Q1. What is UML? Ans. Unified Modelling Language. It is a Industry standard graphical language for modelling and hence visualizing a blue print of all the aspects of

More information

Software Engineering Lab Manual

Software Engineering Lab Manual Kingdom of Saudi Arabia Ministry Education Prince Sattam Bin Abdulaziz University College of Computer Engineering and Sciences Department of Computer Science Software Engineering Lab Manual 1 Background:-

More information

Darshan Institute of Engineering & Technology for Diploma Studies

Darshan Institute of Engineering & Technology for Diploma Studies REQUIREMENTS GATHERING AND ANALYSIS The analyst starts requirement gathering activity by collecting all information that could be useful to develop system. In practice it is very difficult to gather all

More information

Today s Agenda UML. CompSci 280 S Introduction to Software Development. 1.Introduction UML Diagrams. Topics: Reading:

Today s Agenda UML. CompSci 280 S Introduction to Software Development. 1.Introduction UML Diagrams. Topics: Reading: CompSci 280 S2 2107 Introduction to Software Development Today s Agenda Topics: Introduction Activity Diagram Object interaction Sequence Diagram Reading: Booch G.,The Unified Modeling Language User Guide,

More information

Interaction Modelling: Use Cases

Interaction Modelling: Use Cases Interaction Modelling: Use Cases Fabrizio Maria Maggi Institute of Computer Science (these slides are derived from the book Object-oriented modeling and design with UML ) Interaction Modelling: INPUT 1

More information

INTRODUCTION TO UNIFIED MODELING MODEL (UML) & DFD. Slides by: Shree Jaswal

INTRODUCTION TO UNIFIED MODELING MODEL (UML) & DFD. Slides by: Shree Jaswal INTRODUCTION TO UNIFIED MODELING MODEL (UML) & DFD Slides by: Shree Jaswal What is UML? 2 It is a standard graphical language for modeling object oriented software. It was developed in mid 90 s by collaborative

More information

For 100% Result Oriented IGNOU Coaching and Project Training Call CPD TM : ,

For 100% Result Oriented IGNOU Coaching and Project Training Call CPD TM : , Course Code : MCS-032 Course Title : Object Oriented Analysis and Design Assignment Number : MCA (3)/032/Assign/2014-15 Assignment Marks : 100 Weightage : 25% Last Dates for Submission : 15th October,

More information

Introduction to Software Engineering. ECSE-321 Unit 9 Architectural Design Approaches

Introduction to Software Engineering. ECSE-321 Unit 9 Architectural Design Approaches Introduction to Software Engineering ECSE-321 Unit 9 Architectural Design Approaches Requirement Elicitation Analysis (Software Product Design) Architectural Design Detailed Design Architectural Design

More information

Enterprise Architect. User Guide Series. UML Models. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH

Enterprise Architect. User Guide Series. UML Models. Author: Sparx Systems. Date: 30/06/2017. Version: 1.0 CREATED WITH Enterprise Architect User Guide Series UML Models Author: Sparx Systems Date: 30/06/2017 Version: 1.0 CREATED WITH Table of Contents UML Models UML Diagrams UML Structural Models Class Diagram Composite

More information

Chapter 2: Entity-Relationship Model. Entity Sets. Entity Sets customer and loan. Attributes. Relationship Sets. A database can be modeled as:

Chapter 2: Entity-Relationship Model. Entity Sets. Entity Sets customer and loan. Attributes. Relationship Sets. A database can be modeled as: Chapter 2: Entity-Relationship Model Entity Sets Entity Sets Relationship Sets Design Issues Mapping Constraints Keys E-R Diagram Extended E-R Features Design of an E-R Database Schema Reduction of an

More information

OO Analysis and Design with UML 2 and UP

OO Analysis and Design with UML 2 and UP OO Analysis and Design with UML 2 and UP Dr. Jim Arlow, Zuhlke Engineering Limited Clear View Training 2008 v2.5 1 UML principles Clear View Training 2008 v2.5 2 1.2 What is UML? Unified Modelling Language

More information

Chapter 7: Entity-Relationship Model

Chapter 7: Entity-Relationship Model Chapter 7: Entity-Relationship Model, 7th Ed. See www.db-book.com for conditions on re-use Chapter 7: Entity-Relationship Model Design Process Modeling Constraints E-R Diagram Design Issues Weak Entity

More information

Experiment no 4 Study of Class Diagram in Rational Rose

Experiment no 4 Study of Class Diagram in Rational Rose Experiment no 4 Study of Class Diagram in Rational Rose Objective-: To studyclass Diagram in Rational Rose. References-: www.developer.com The Unified Modeling Language User Guide by Grady Booch Mastering

More information

Oral Questions. Unit-1 Concepts. Oral Question/Assignment/Gate Question with Answer

Oral Questions. Unit-1 Concepts. Oral Question/Assignment/Gate Question with Answer Unit-1 Concepts Oral Question/Assignment/Gate Question with Answer The Meta-Object Facility (MOF) is an Object Management Group (OMG) standard for model-driven engineering Object Management Group (OMG)

More information

Ans 1-j)True, these diagrams show a set of classes, interfaces and collaborations and their relationships.

Ans 1-j)True, these diagrams show a set of classes, interfaces and collaborations and their relationships. Q 1) Attempt all the following questions: (a) Define the term cohesion in the context of object oriented design of systems? (b) Do you need to develop all the views of the system? Justify your answer?

More information

12 Tutorial on UML. TIMe TIMe Electronic Textbook

12 Tutorial on UML. TIMe TIMe Electronic Textbook TIMe TIMe Electronic Textbook 12 Tutorial on UML Introduction......................................................2.................................................3 Diagrams in UML..................................................3

More information

SEEM4570 System Design and Implementation. Lecture 10 UML

SEEM4570 System Design and Implementation. Lecture 10 UML SEEM4570 System Design and Implementation Lecture 10 UML Introduction In the previous lecture, we talked about software development life cycle in a conceptual level E.g. we need to write documents, diagrams,

More information

LECTURE NOTES ON OBJECT ORIENTED ANALYSIS AND DESIGN PATTERNS. III B. Tech II Semester (R-16) Ms. N Shalini. Assistant Professor

LECTURE NOTES ON OBJECT ORIENTED ANALYSIS AND DESIGN PATTERNS. III B. Tech II Semester (R-16) Ms. N Shalini. Assistant Professor LECTURE NOTES ON OBJECT ORIENTED ANALYSIS AND DESIGN PATTERNS III B. Tech II Semester (R-16) Ms. N Shalini Assistant Professor COMPUTER SCIENCE AND ENGINEERING INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous)

More information

UML diagrams. Software artifacts include: SRS, SDS, test cases, source code, technical/user manual, software architecture, etc.

UML diagrams. Software artifacts include: SRS, SDS, test cases, source code, technical/user manual, software architecture, etc. UML Modeling UML diagrams UML (Unified Modeling Language) is a general purpose visual modeling language that provides different types of diagrammatic techniques and notations to specify, visualize, analyze,

More information

Object-Oriented Software Engineering Practical Software Development using UML and Java

Object-Oriented Software Engineering Practical Software Development using UML and Java Object-Oriented Software Engineering Practical Software Development using UML and Java Chapter 5: Modelling with Classes Lecture 5 5.1 What is UML? The Unified Modelling Language is a standard graphical

More information

OBJECT ORIENTED MODELLING & DESIGN 1

OBJECT ORIENTED MODELLING & DESIGN 1 OBJECT ORIENTED MODELLING & DESIGN 1 Contents 1. OBJECT ORIENTED CONCEPTS... 6 OBJECT... 6 CLASS... 6 CLASS vs OBJECT... 6 WHAT IS OBJECT ORIENTED?... 6 OBJECT ORIENTED METHODOLOGY... 7 ADVANTAGES OF OBJECT

More information

Course 3 7 March

Course 3 7 March Course 3 7 March adiftene@info.uaic.ro 1 From Courses 1, 2 Modeling Modeling Languages Graphic Languages UML History UML Definition UML Diagram Types UML Use Case Diagram Actors Use Case UML Class Diagrams

More information