Question
Easy

Consider a graph G of 8 vertices containing no self loop. If there is no more than one edge between any pair of vertices, maximum possible number of edges in G are :

1
8
2
16
3
28
4
64
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Data Structures (Through C++)
Topic: Data Structure Concepts
Correct Answer
Option C
Explanation

The correct option is (3): The question describes a simple, undirected graph of 8 vertices. The properties "no self loop" and "no more than one edge between any pair of vertices" are the defining characteristics of a simple graph. To find the maximum possible number of edges in such a graph, we must assume it is a complete graph ($K\_n$), where every distinct pair of vertices is connected by exactly…Read More