MathJax


Sunday, April 24, 2022

2022-093

Consider that the following DAG (Directed Acyclic Graph) represents tasks and requirements between tasks.

Evaluate the following statements:

  1. There are a total of 12 strongly connected components;
  2. There are a total of 4 valid topological sorting possibilities;
  3. Starting a DFS on node 2 might result in having two cross edges;
  4. The DAG indicates that to perform task 10, you must perform task 7 before tasks 8 and 9.

Select the best answer:

  1. 1 - True, 2 - False, 3 - True, 4 - False
  2. 1 - False, 2 - True, 3 - True, 4 - False
  3. 1 - True, 2 - False, 3 - True, 4 - True
  4. 1 - False, 2 - False, 3 - False, 4 - False
  5. None of the above 

Original idea by André Portela

No comments:

Post a Comment

2023-228

A company launched a new gadget C to be produced globally for North American and South American markets. The company uses just-in-time as ...