In an adjacency matrix, if two vertices are adjacent the matrix intersect has a value of ____.

A. -1
B. 0
C. 1
D. true


Answer: C

Computer Science & Information Technology

You might also like to view...

When clicked, a ________ will take you to another location in the worksheet, another file location, a Web page on the Internet, or to your organization's intranet

A) hyperlink B) Save As dialog box C) page break D) welcome screen

Computer Science & Information Technology

A(n) source file contains the object that is displayed in the destination file. _________________________

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

When video files are played while being downloaded from the Internet, it is called _____.

A. video compression B. virtual reality C. streaming video D. file conversion

Computer Science & Information Technology

Given the following program segment, what data is passed from the Main program to the subprogram named Display?

```Main Declare R As Integer Set R = 2 Call Display(R*6, R+1, 14) End Program Subprogram Display(X, Y, Z) Write X + “, “ + Z + “, “ + Y End Subprogram``` a. 2, 2, 14 b. 12, 3, 14 c. 12, 14, 3 d. this cannot be done

Computer Science & Information Technology