In a graph, each ____ represents a person.

A. axis
B. cell
C. edge
D. node


Answer: D

Computer Science & Information Technology

You might also like to view...

When you are unsure how many values in an array will need to be sorted, that array is said to be of ____________________ size.

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

Computer Science & Information Technology

Evaluate the expression and reduce the result to lowest term.

(1/2) + (1/5)

Computer Science & Information Technology

List five laws that have been put into effect to help monitor and control the use of electronic communication systems and computers as well as provide guidelines for prosecution of computer and information-related crimes.

What will be an ideal response?

Computer Science & Information Technology

In the following function, where should the call to "free (root);" go?void _destroy (NODE* root){   if (root)  {       _destroy (root->left);       free (root->dataPtr);       _destroy (root->right);   }   return;}

A. Right before _destroy(root->right). B. Right after _destroy(root->left). C. Right after _destroy(root->right). D. Right before the return statement.

Computer Science & Information Technology