Q16Comprehension5 Marks1 Sep 2024
Passage
Based on the above data, answer the given subquestions.
The following pseudocode constructs a graph G using the "Scores" dataset, represented by the adjacency matrix B. Let A be a dictionary with sequence numbers of students as keys mapped to their total marks.
```
n = length(keys(A))
B = createMatrix(n, n)
foreach i in keys(A){
foreach j in keys(A){
if(A[i] > A[j]){
B[i][j] = 1
}
}
}
```
Choose the correct option(s) with respect to the graph G. It is a Multiple Select Question.