Correct Answer (Detailed Explanation is Below)
C.
Shortest Path Problem
Detailed Explanation
NP-Complete problems are problems that are both in NP and NP-hard. The decision version of the
Traveling Salesman Problem (TSP) and the
Boolean Satisfiability Problem (SAT) are standard NP-Complete problems. In contrast, the
Shortest Path Problem can be solved in polynomial time using algorithms such as Dijkstra’s algorithm for suitable edge weights and Bellman-Ford when negative edges are present. Therefore, Shortest Path is generally classified in
P, not NP-Complete.