The actual use cases in a use case diagram are represented by ____.

A. triangles
B. squares
C. ovals
D. stick figures

Answer: C

Computer Science & Information Technology

You might also like to view...

Histograms can be created on a separate worksheet when using the Analysis ToolPak

Indicate whether the statement is true or false

Computer Science & Information Technology

Which of the following statements assigns the Flavor enumerated type value to The integer variable?

Look at the following code sample: ``` enum Flavor { Vanilla, Strawberry, Chocolate } ``` a. int n = Flavor.Strawberry.ToInteger(); b. int n = Strawberry.IntValue; c. int n = (Flavor) Strawberry; d. int n = (int) Flavor.Strawberry;

Computer Science & Information Technology