The process of object-oriented analysis can be viewed as the following steps:
a. identify objects, then define each object's attributes, behaviors, and relationships
b. define data members and member functions, then assign the class name
c. declare public and private variables, prototype functions, and then write code
d. write the main() function, then determine which classes are needed
e. None of these
a. identify objects, then define each object's attributes, behaviors, and relationships
You might also like to view...
Which of the following version numbers would indicate a minor revision?
A) IV B) 2.0 C) 2.1 D) 3.0
________ are composed of one or more sectors on a hard disk
Fill in the blank(s) with correct word
Case-Based Critical Thinking QuestionsCase 3-1Linda doesn't know much about tweened animation, but she needs a crash course in it to prepare a multimedia presentation for her manager at the end of the week. Her colleague Sasha offers to help. Linda is having trouble with applying motion tweening to a given object. Which of the following could be the reason, according to Sasha?
A. The object is not a symbol. B. She has created a keyframe in the frame where the animation will end. C. She only has one object in the layer in which she wants to create the motion tween. D. all of the above
Given the following pseudocode, how many times will module B020 be called?
``` Start Process B000 DOWHILE not EOF Process B010 IF condition THEN Process B020 (ELSE) ENDIF ENDDO Process B020 Process B030 Stop ``` a) 0 or more times b) exactly 1 time c) 1 or more times d) cannot be determined