Which software artifact depicts how the application could incur abuses from the user?

A. Use case
B. Misuse case
C. Conceptual model
D. Software design


Answer: B

Computer Science & Information Technology

You might also like to view...

The drag-and-drop feature is most useful when the text you are moving is on the same screen as the destination location

Indicate whether the statement is true or false

Computer Science & Information Technology

Suppose that sales is a two-dimensional array of 10 rows and 7 columns wherein each component is of the type int. Which of the following correctly finds the sum of the elements of the fifth row of sales?

A. int sum = 0; for(int j = 0; j < 7; j++)     sum = sum + sales[5][j]; B. int sum = 0; for(int j = 0; j < 7; j++)     sum = sum + sales[4][j]; C. int sum = 0; for(int j = 0; j < 10; j++)     sum = sum + sales[5][j]; D. int sum = 0; for(int j = 0; j < 10; j++)     sum = sum + sales[4][j];

Computer Science & Information Technology

A(n) ____________________ object should be used when several independent options are presented and the user is allowed to select more than one option.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Which of the following design principles refers to the juxtaposition of opposing elements?

A. Repetition B. Gradation C. Contrast D. Dominance

Computer Science & Information Technology