The ____________________ traversal of a graph is similar to traversing a binary tree level by level.

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


breadth-first

Computer Science & Information Technology

You might also like to view...

The Heading 1 style is an example of a(n) ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

The cable ends in a bus topology network must be terminated to prevent a signal sent from one computer from ________________ at the ends of the cable, creating unnecessary traffic.

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

Computer Science & Information Technology

We have a file that has a name in it, but the name is written one character per line. We need to write this name to the screen. What is wrong with the following code?

ifstream fileIn; fileIn.open("file.txt"); char ch; fileIn.get(ch) while(!fileIn.eof()) { cout.put(ch); fileIn.get(ch); } a. can not use put with cout. b. our output has new lines in it. c. nothing is wrong d. eof is not a member of an ifstream object

Computer Science & Information Technology

A PERT diagram is useful when:

A) activities can be done in parallel rather than sequence. B) there is no slack time available. C) the project team needs to know which activities should be done at which point in time. D) activities do not have any precedent activities.

Computer Science & Information Technology