Vidyalelo
Data Structure · Q131

Graphs

Programming · Data Structure · question 131

Q131

Which of these adjacency matrices represents a simple graph?

A.
[ [1, 0, 0], [0, 1, 0], [0, 1, 1] ]
B.
[ [1, 1, 1], [1, 1, 1], [1, 1, 1] ]
C.
[ [0, 0, 1], [0, 0, 0], [0, 0, 1] ]
D.
[ [0, 0, 1], [1, 0, 1], [1, 0, 0] ]
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board