We have a connected undirected graph of 100 vertices and 300 edges. The weight of a minimum spanning tree of G is 500. When the weight of each edge is increased by 5, what will be the weight of the minimum spanning tree?

a. 995
b. 1000
c. 2000
d. 1995


a. 995
Since there are 100 vertices, there must be 99 edges in the MST. When weight of every edge is increased by 5, the increment in weight of the MST is 99 * 5 = 495. So, the new weight of the MST is 500 + 495, which is 995.

Computer Science & Information Technology

You might also like to view...

To evenly space multiple objects horizontally or vertically, you ____ them.

A. align B. distribute C. arrange D. position

Computer Science & Information Technology

When musicians work with additive synthesis, they will often wrap envelopes around the sounds, and even around each added sine wave. An envelope changes the amplitude over time: It might start out small, then grow (rapidly or slowly), then hold at a certain value during the sound, and then drop before the sound ends. That kind of pattern is sometimes called the attack-sustain-decay (ASD) envelope. Pianos tend to attack quickly then decay quickly. Flutes tend to attack slowly and sustain as long as you want. Try implementing that for the sine and square wave generators.

What will be an ideal response?

Computer Science & Information Technology

If you plan to compress pictures in your document, do so after removing the background of a picture

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

Computer Science & Information Technology

When processing a stack:

a. Additions are at one end and deletions are at the other end. b. Additions and deletions are both at the same end. c. Additions are at the top and deletions are at the bottom. d. Additions are at the bottom and deletions are at the top.

Computer Science & Information Technology