A(n) ____ diagram identifies the required object and lists its relevant attributes and behaviors.
A. class
B. object description
C. software design
D. UML
Answer: B
You might also like to view...
On mobile devices, the OS is held on a memory chip within the system unit
Indicate whether the statement is true or false
In the Windows Store, Your Social Network, Getting Started, All About Sports, and The Newsstand are examples of ________
A) apps B) collections C) Live Tiles D) categories
In Fedora 20, where are user configured settings for Xorg stored??
A. ?/etc/X11/xorg.conf B. ?/etc/X11/xorg.conf.d/ C. ?/etc/inittab D. ?/etc/X11.conf
Given the following pseudocode, what value of GRADENUM can be input to output a grade of “F”?
``` Start Read GRADENUM CASENTRY GRADENUM CASE 90 ? GRADENUM ? 100 GRADE = “A” CASE 80 ? GRADENUM ? 90 GRADE = “B” CASE 70 ? GRADENUM ? 80 GRADE = “C” CASE 60 ? GRADENUM ? 70 GRADE = “D” CASE other GRADE = “F” ENDCASE Write GRADE Stop ``` a) 59 b) 60 c) 61 or less d) none of the above