Home » Programming & Data Structure » Programming and data structure miscellaneous » Question

Programming and data structure miscellaneous

Programming & Data Structure

  1. G is an undirected graph with n vertices and 25 edges such that each vertex of G has degree at least 3. Then the maximum possible value of n is _______.
    1. 12
    2. 16
    3. 6
    4. 65
Correct Option: B

If every vertex has degree at least 3 then, the maximum possible value of n
where (n is the vertices), given edge (E) = 25 then, 2(E) ≥ ∑ degree of vertices
        (∴ According to undirected graph)
2(E) ≥ 3n

n ≤
2(E)
3

n ≤
2 × 25
3

n ≤ 16.66
So, n is at Most 16.
Hence 16 is correct answer.



Your comments will be displayed only after manual approval.