Question 1161123
<br>
The answer is NOT C.<br>
The brute force method determines the cheapest route by examining ALL POSSIBLE routes.  ABCDA is not the cheapest route.<br>
In a relatively simple graph like this, the cheapest route will be one that does NOT follow the most expensive edge.<br>
In this graph, edge CD is the most expensive.  Answer choices A, B, and C all use edge CD (or DC), so the answer is D none of the above.<br>
This graph is small enough it is not very difficult to list all possible circuits and find the cost of each.<br>
ABCDA
ABDCA
ACBDA
ACDBA
ADBCA
ADCBA<br>
Note that this list of all 6 circuits is actually 3 different circuits, each listed twice, in opposite orders.<br>
The cheapest route is either of the two that do not use edge CD: ACBDA or ADBCA -- which again are the same circuit in opposite directions.<br>