InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is a HyperGraph, where V is the set of vertices, E is the set of edges?(a) V = {v1, v2, v3} E = {e1, e2} = {{v2, v3} {v1, v3}}(b) V = {v1, v2} E = {e1} = {{v1, v2}}(c) V = {v1, v2, v3} E = {e1, e2, e3} = {{v2, v3}{v3, v1}{v2, v1}}(d) All of the mentionedThe origin of the question is Multigraph and Hypergraph topic in portion Graph of Data Structures & Algorithms IThe question was asked in an interview for job. |
|
Answer» RIGHT choice is (d) All of the mentioned For EXPLANATION: In a UNIFORM Graph all the hyper-edges have the same cardinality. |
|