adplus-dvertising
frame-decoration

Question

The Object Modelling Technique (OMT) uses the following three kinds of model to describe a system 

a.

Class Model, Object Model and Analysis Model

b.

Object Model, Dynamic Model, and Functional Model

c.

Class Model, Dynamic Model and Functional Model

d.

Object Model, Analysis Model and Dynamic Model

Answer: (b).Object Model, Dynamic Model, and Functional Model

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. The Object Modelling Technique (OMT) uses the following three kinds of model to describe a system 
ajay : June 26, 2023

Object Model: This model emphasizes objects and classes, focusing on principles like abstraction, encapsulation, modularity, and hierarchy. It describes the static structure of the system, including classes, attributes, and predefined relationships like aggregation and generalization
1
2
.

Dynamic Model: This model represents the state and transition view of the system. It involves states, transitions between states, and events that trigger these transitions. It is used to model the behavior of the system over time
1
2
.

Functional Model: This model focuses on data flow, data storage, and processes. It describes how data moves through the system and how different processes interact with each other. Data Flow Diagrams (DFDs) are commonly used to represent the functional model

Similar Questions

Discover Related MCQs

Q. An example of a dictionary-based coding technique is 

Q. A algorithm is guaranteed to find an optimal solution if 

Q. What is the value of the postfix expression ?
abc d + - * (where a = 8 , b = 4 , c = 2 and d = 5)

Q. If the queue is implemented with a linked list, keeping track of a front pointer and a rear pointer, which of these pointers will change during an insertion into a non-empty queue?

Q. ___________ is often used to prove the correctness of a recursive function.

Q. For any B-tree of minimum degree   t   ≥  2, every node other than the root must have atleast keys and every node can have at most ____ keys. 

Q. Given two sorted list of size 'm' and 'n' respectively. The number of comparison needed in the worst case by the merge sort algorithm will be 

Q. Match the following with respect to programming languages

  a. Structured Language  i.   JAVA

  b. Non-structured Language   ii. BASIC

  c. Object Oriented  Programming Language  iii.  PASCAL

  D. Interpreted  Programming Language  iv. FORTRAN

codes:
a b c d

Q. The compiler converts all operands up to the type of the largest operand is called

Q. _____________ comparisons  are necessary in the worst case  to find both the maximum and minimum of n numbers.

Q. Let A and B be two n x n matrices,The efficient algorithm to multiply the two matrices , has the time complexity

Q. Assuming there are n keys and each key is in the range [0, m - 1]. The run time of bucket sort is

Q. You have to sort a list L, consisting of a sorted list followed by a few 'random' elements. Which of the following sorting method would be most suitable for such a task?

Q. A full binary tree with n leaves contains

Q. How many PUSH and POP operations will be needed to evaluate the following expression by reverse polish notation in a stack machine (A * B) + (C * D/E)?

Q. Consider an array A[20. 10], assume 4 words per memory cell and the base address of array A is 100. What is the address of A[11,5]? Assume row major storage.

Q. Convert the following infix expression into its equivalent post fix expression (A + B^D)/(E - F) + G

Q. Any decision tree that sorts n elements has height

Q. Match the following .
     List- I                                                    List - II
a. Bucket sort                                      i. O(n^3/gn)
b. Matrix chain multiplication           ii. O(n^3) 
c. Huffman codes                             iii. O(nlgn)
d. All pairs shortest paths               iv. O(n)

code:
a   b   c   d

Q. Suppose that we have numbers between 1 and 1000 in a binary search tree and we want to search for the number 365. Which of the following sequences could not be the sequence of nodes examined ?