Consider a network containing
A. The average distance
B. The first moment
C. The second moment
D. The expected size of the largest hub is
E. None of the above.
Original idea by: Marcelo SilvaInstructions for question creators: (1) do not include the answer; (2) the last alternative must be: "E, None of the above"; (3) at the end, add "Original idea by: " and your name.
Consider a network containing
A. The average distance
B. The first moment
C. The second moment
D. The expected size of the largest hub is
E. None of the above.
Original idea by: Marcelo SilvaConsider two random networks A and B. Network A has 17 nodes and probability p = 1/4 of an edge existing between any two nodes. Network B has 31 nodes and probability p = 1/5 of an edge existing between any two nodes. The average degree of networks A and B respectively will be?
Original idea by: Meer Muhammad Khan
Consider a random network
Original idea by: Matheus Fernandes Sarmento
Consider a random network with average degree equal to 1.05 and
Original idea by: Gabriel Oliveira
Given the following oriented graph and applying two BFSs, one starting from node A (BFS-A), and the other starting at D (BFS-D), which of the following statements are
true?
I. BFS-A visits node D.
II. The number of visited nodes in BFS-A is 5
III. BFS-D gets to visit all nodes in the graph.
IV. Deleting the red links reduces the number of visited nodes in BFS-D.
A. Only II
B. II and IV
C. II, III and IV
D. III and IV
E. None of the above
Original idea by: Victor SoteloConcerning the Breadth First Search (BFS) algorithm with a queue, observe the oriented graph below, and assume that the adjacency lists are arranged in decreasing order.
Suppose you start a BFS in this graph from node 3. Select the option representing the order of node numbers loaded into the queue during this operation.
Original idea by: Rubens de Castro Pereira
Considering the following graph.
Which one of the following is a possible order for visiting the nodes using BFS?
Original idea by: Rodrigo Bifulco
Given the directed and unweighted graph below, and supposing that we start in node 1:
Original idea by: Pedro Henrique Di Francia Rosso
The Breadth First Search (BFS) algorithm has been implemented using the queue. Which of the following is a best possible order of visiting the nodes in the graph below?
Given the unoriented graph below, indicate the correct distances from node 1 to each node different from 1, in the numerical ascending order of nodes. Tip: you may use the BFS algorithm.
Given the following oriented graph, which of the statement are true?
I. Removing any node affects the strong connectivity status (strongly connected or not)
II. The graph is strongly connected.
III. The length of the shortest path from A to C is 4
IV. There exist exactly 4 cycles in the graph.
A. Only I
B. II and IV
C. I and II
D. only IV
E. None of the above
Original idea by: Victor SoteloConsider the following graph. If there is a decision between multiple neighbor nodes in the Depth-First Search (DFS) or Breadth First-Search (BFS) algorithms, select the node with the smallest number.
In what order will the nodes be visited in both DFS and BFS algorithms starting at node 1?
Original idea by: Rubens de Castro Pereira
Pedro has been given several tasks to do. But instead of a list with the order of the tasks, his supervisor gave him a graph where edges that go from node A to B mean that task B depends on task A. Unfortunately, Pedro does not know how to use this information from the graph, so he doesn't know which tasks to do first. The graph his supervisor provided was:
As a specialist in graphs, you were chosen to help Pedro with ordering the tasks he needs to do. His supervisor said to him to always prioritize the task with the smallest label when there is a choice. Knowing the constraints, which order should Pedro follow?
Original idea by: Pedro Henrique Di Francia Rosso
How many topological orderings exist in the graph given below?
Original idea by: Meer Muhammad Khan
Given the following directed graph, if DFS is started from vertex 0
for an implementation in which the adjacency lists are in sorted order,
then what is correct to affirm regarding edge classifications:
A. {a, b, c, d} are tree-edges;
{g, h} are forward-edges;
{e, f} are back-edges;
{i} is a cross-edge
B. {b, e, d, i, j, c} are tree-edges;
{g} is a forward-edge;
{a} is a back-edge;
{h} is a cross-edge;
C. {a, b, c, g} are tree-edges;
{d, h} are forward-edges;
{e, f} are back-edges;
{i} is a cross-edge;
D. {a, b, c, d} are tree-edges;
{g, h} are forward-edges;
{e, i} are back-edges;
{f} is a cross-edge
E. None of the above
Original idea by: Marcelo Silva
Consider the Active Time Diagram defined below. The rows,
Given the above statements, which of them are true:
Original idea by: Fábio Assunção.
A truck driver from a food supply company has to visit several cities to make deliveries. However, he must visit some cities before others, in order to pick up important items. These precedence requirements are shown as the edges in the graph below. Whci alternative shows a topological order of cities?
Considering the graph given below, the number of connected triplets and triangles are:
Original idea by: Meer Muhammad Khan
Consider the Network corresponding to the Adjacency Matrix
Consider the following networks: Which of the following options correctly ranks these networks from most robust to least robust agai...