edited by
14,004 views

3 Answers

Best answer
10 votes
10 votes
as every vertex has degree d,so sum of degrees is n*d.

we know 2* number of edges = sum of degrees

          so,2*E = nd

              =>E=$\frac{nd}{2}$
selected by
2 votes
2 votes
Regular graph, a graph in which all vertices have same degree.

example:- if n=3 and d=2 so there are 3*2/2 = 3 edges.
                 if n=4 and d=2 so there are 4*2/2 = 4 edges. and so on.

So option D is correct.
2 votes
2 votes

Every complete graph with n vertices(Kn) is a regular graph of degree 'n-1' therefore 

no. of edges in Kn=n(n-1)/2

                            =n(d)/2

                           = ( n * d ) / 2

Answer:

Related questions

5 votes
5 votes
2 answers
3
Arjun asked Apr 22, 2018
8,594 views
Consider the following program{ int x=1; printf("%d",(*char(char*)&x)); }Assuming required header files are included and if the machine in which this program is executed ...
5 votes
5 votes
3 answers
4
Arjun asked Apr 22, 2018
5,662 views
Consider the following declaration :structaddr { char city[10]; char street[30]; int pin; }; struct { char name[30]; int gender; struct addr locate; } person, *kd = &pers...