Processing math: 100%

Saturday, 30 April 2022

[MO412] Quizz Question 6 - Scale-free Networks

Mark the alternative that best describes true statements about scale-free networks: 

 


a) The degrees of a random network follow a Normal distribution
b) The ubiquity of the scale-free property means that all real networks are scale-free
c) In a scale-free network, the minimum degree have size 10  if the scale-free network has γ=2, largest hub size of 340, and number of nodes is 170 
d) In scale-free networks a few highly connected hubs coexist with a large number of small nodes, and the presence of these hubs plays an important role in the system’s behavior
e) None of the above

Original idea by: Levy Chaves

Wednesday, 20 April 2022

[MO412] Quizz Question 5 - BFS

About Breadth First Search (BFS) mark the alternative that contains all true statements:

I) The data structure used in standard implementations is a Queue  
II) Can be used to find the shortest path from a source vertice to other vertices in an unweighted graph 
III) Can be used to find all connected components in a undirected graph 
IV) The BFS traversal of a graph will result into a Tree
V) We can use BFS to find all the vertices on any shortest path between a given pair of vertices (a, b) by running two BFS: one starting from a, and other starting from b 


a) only I, II, and IV
b) only I, II, and III
c) only II, III, IV, and V
d) only II, III, and V
e) None of the above 
 

 

Original Idea by: Levy Chaves

Friday, 15 April 2022

[MO412] Quizz Question 4

Mark the alternative that corresponds to the following derivates: f(x)=5x4+6x3+20, z(x)=5x5+x3x35, and g(x)=13x15+1x33x 


a) f(x)=20x3+18x2; z(x)=25x4+3x235x25;  g(x)=5x1412x32x43  

b) f(x)=20x318x2; z(x)=25x43x2+35x25;  g(x)=5x14+12x32+x43  

c) f(x)=20x3+18x2; z(x)=25x4+3x2+35x25;  g(x)=5x141x32x43  

d) f(x)=20x3+18x2; z(x)=25x4x235x25;  g(x)=5x1412x3x43  

e) None of the above

Original Idea by: Levy Chaves

Saturday, 9 April 2022

[MO412] Quizz Question 3

Given a network G with N nodes, L links and probability p. Find a formula for that express the probability of a given node has exactly k links in terms of N, k, p, and the average degree <k>.


a) 
b) 

c ) 

d)  

Original Idea by: Levy Chaves

Saturday, 2 April 2022

[MO412] Quizz Question 2


About Depth First Search (DFS) and topological sorting, assign true or false to the following statements:

I) The visited node order of the following graph and adjacency list, starting with s, is s a c e b d
II) While running a DFS on a directed graph, if from vertex u we visit a finished vertex v, then the edge (u, v) is a cross-edge

III) if a topological sort exists for the vertices in a directed graph, then a DFS  on the graph will produce no back edges 

IV) A DFS in a directed graph always produces the same number of tree edges 

V) Suppose we perform a DFS on a directed graph G. If we remove all the back edges found, the resulting graph is acyclic 

a) I, II, III
b) II, III, V
c) I, III, IV, V
d) I, III, V
e) All statements are true

Original Idea by: Levy Chaves

 

Quizz Question 13

 Considering a network with six nodes, in how many ways we can divide this network into two subgraphs of sizes N1 = N2 = 3 ?  a...