What is UML? What are the three major elements of UML?
What will be an ideal response?
UML(Unified Modeling Language) provides a standardized set of tools to document the object-oriented analysis and design of a software system. UML consists of three major elements: things, relationships and diagrams.
You might also like to view...
If a company wanted to use a boutique agency for developing a special contest or sweepstakes event, who should be contacted?
A) a media service agency B) a consumer promotion agency C) a direct marketing agency D) a trade promotion agency
I have done significant reflection about myself, my leadership, and my life experiences, which has helped me become the leader that I am. I am using which definition of authentic leadership?
A. intrapersonal B. interpersonal C. developmental D. fundamental
Which of the following would NOT be classified as a media type?
A) print B) broadcast C) Internet D) personal selling E) out-of-home
Which of the following code fragments would not raise an error?
A. IF rec.state = 'VA' OR 'PA' THEN a := b * .06; ELSE a := b * .04; END IF; B. IF rec.state = 'VA' OR rec.state = 'PA' THEN a := b * .06; ELSE a := b * .04; END IF; C. IF rec.state = 'VA' OR rec.state = 'PA' a := b * .06; ELSE a := b * .04; END IF; D. IF rec.state = 'VA' OR rec.state = 'PA' THEN a := b * .06; ELSE a := b * .04; END IF