?A(n) _____ shows the object classes and relationships involved in a use case.

A. ?class diagram
B. ?association diagram
C. ?use case diagram
D. ?modeling diagram


Answer: A

Computer Science & Information Technology

You might also like to view...

In the figure above, which item allows you to make a video? ____.

A. item 4 B. item 3 C. item 2 D. item 1

Computer Science & Information Technology

The ___________ event handler is invoked when a key is pressed by the user.

a) keyDown b) keyReleased c) keyPressed d) none of the above

Computer Science & Information Technology

Consider the following string matching algorithm, what is the name of this algorithm?

void algo(String P, String T) { int N = T.length()-1; int M = P.length()-1; char p = P.charAt(M); for(int x=N;x>=0;x--){ if(T.charAt(x) == p){ int y=0; for(y=0;y<=M;y++){ if(T.charAt(x-M+y) != P.charAt(y)) break; } if(y ==M+1) System.out.printf("Match at:%d%n",(x-M)); } } } a. Naïve string matching b. Boyer-Moore c. Rabin-Karp d. Aho-Corasick

Computer Science & Information Technology

On On Facebook, hold down the Alt key while clicking files to select multiple files

Indicate whether the statement is true or false

Computer Science & Information Technology