Observing the images below:
Mark the option that matches the node shapes in the Scale-Free network with the data point shapes in the Log-log plot of the same network:
B) None of the above.
Original idea by: João Medrado Gondim
Instructions 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.
Observing the images below:
Mark the option that matches the node shapes in the Scale-Free network with the data point shapes in the Log-log plot of the same network:
B) None of the above.
Original idea by: João Medrado Gondim
A scale-free network has a degree distribution that follows a power law:
$$p(k) = Ck^{-\gamma} $$
where \( \gamma = 3 \), the maximum degree is \( k_{max} = 600 \) and the network size is \( N = 4 \times 10^4 \).
Which of the options represents the approximate value to one decimal place of the constant \( C \) for this degree distribution?
Options:
a)
b)
c)
d)
e) None of the above
Original idea by: Yan Prada.
Define f(
Compute the following ratios:
1. f(10⁴, 7/3) / f(10⁴, 5)
2. f(10⁸, 7/3) / f(10⁸, 5)
3. f(10¹², 7/3) / f(10¹², 5)
The values for (1), (2), and (3) are approximately, respectively:
A. 1, 10_000, 1_000_000_000
B. 1, 100_000_000, 1_000_000
C. 100, 10_000, 1_000_000
D. 100, 100_000_000, 1_000_000_000
E. None of the above
Note: underscores are used for readability of large numbers.
Original idea by: Rodolfo Bitu
Consider a directed graph \(G\) and the Kosaraju-Sharir's algorithm for finding strongly connected components (SCCs). Analyze the following statements:
I. The SCC decomposition of a directed graph is unique, but the particular order in which SCCs are discovered by Kosaraju’s algorithm may depend on the order of adjacency lists.
II. If a directed graph has no back edges in a DFS traversal, then each vertex forms a distinct SCC.
III. If \(G\) is strongly connected, then the second DFS in Kosaraju’s algorithm produces a single tree covering all vertices, regardless of the order of exploration.
IV. The order of vertices given by decreasing finishing times of the first DFS guarantees that the second DFS on the transposed graph \(G^T\)
Select the correct alternative:
A) Only I and II are correct.
B) Only I and IV are correct.
C) Only I, II and IV are correct.
D) Only I, III and IV are correct.
E) None of the above.
Original idea by: Mateus de Padua Vicente
A technical leader responsible for the software testing team intends to allocate a functional requirement to a team member who currently has no assigned tasks. For this assignment, the objective is to select a functional requirement that does not have strong dependencies on other requirements. Therefore, the leader chose to use the Kosaraju-Sharir algorithm to identify the Strongly Connected Components composed of only a single vertex. Requirement dependencies are represented in the directed graph shown in the image below.
Which functional requirement was assigned to the team member for testing?
A. FR01
B. FR03
C. FR05
D. FR07
Consider the following directed graph:
I. The shortest path from A to J has length 5, and this is the longest among all shortest paths in the graph.
II. The number of cycles in the graph is exactly half the number of its strongly connected components.
III. If each strongly connected component is collapsed into a single node, there will be two possible topological orderings of the graph.
IV. If node D and all its incident edges are removed, and a new edge from B to E is added, the resulting graph will form a single strongly connected component.
Which of the statements are correct?
A) I, II, and III
B) Only III
C) III and IV
D) Only IV
E) None of the above
Original idea by: Jhonatan Cléto
A fungal colony, whose hyphae form a network called the mycelium, started growing on a piece of bread left unattended. The colony started small, at an initial number of spores \(N = 5000\). It is known that, although the number of spores remains constant, this species creates hyphae (links) over time, so that at any point in time it looks like a random \(G(N,p)\) network, where \(p\) is given by the function below:
\( p(t) = t/10^{4}\)where t is the time measured in days.
Given two different intervals:
Assign the correct alternatives with respect to attributes about the mycelium growth.
Original idea by: Alexandre Petrachini
\(G_1(N,p_1)\) and \(G_2(N,p_2)\) are two random networks with the same number of nodes \(N\), but different link probabilities, with \(p_1 > p_2\).
Which of the following statements is correct?
Original idea by: Gabriel Sato
Given the following plot for the theoretical binomial distribution of degrees in a random graph created with 250 nodes,
what was the probability (rounded to 2 decimal places) of edge creation used?
A) 0.01
B) 0.05
C) 0.10
D) 0.20
E) None of the above.
Original idea by: João Medrado Gondim
Observing the images below: Mark the option that matches the node shapes in the Scale-Free network with the data point shapes in the Log-l...