recategorized by
1,077 views
1 votes
1 votes

____ number of underlined graphs can be constructed using $V=(v1,v2, \dots,vn)$.

  1. $n^3$
  2. $2^{n(n-1)}/2$
  3. $n-1/2$
  4. $2^{(n-1)}/2$
recategorized by

2 Answers

1 votes
1 votes

Graph with N vertices may have up to $N(N-1)/2$ edges (if loops aren't allowed). Now each edge have only 2 possibilities i.e. either Present or Absent. So overall number of possible graphs is  $2^{N(N-1)/2}$

SO OPTION B.

1 votes
1 votes
→ With n vertices no. of possible edges = nC2
→ Each subset of these edges will form a graph.
→ Number of possible undirected graphs is 2(nC2) 2(n(n-1)/2)

Answer-B
Answer:

Related questions

1 votes
1 votes
3 answers
1
Arjun asked Dec 7, 2018
1,299 views
The smallest element that can be found in time ____ in a binary max heap.$O(n \log n)$$O( \log n)$$O(n)$$O(n^2)$
5 votes
5 votes
5 answers
2
Arjun asked Dec 7, 2018
2,160 views
______ to evaluate an expression without any embedded function calls.Two stacks are requiredone stack is neededThree stacks are requiredMore than three stacks are require...
1 votes
1 votes
2 answers
3
Arjun asked Dec 7, 2018
3,463 views
For a given hash table $T$ with $10$ slots that stores $1000$ elements, the load factor $\alpha$ for $T$ is$100$$0.01$$200$$1.05$
1 votes
1 votes
1 answer
4
Arjun asked Dec 7, 2018
4,332 views
____ is the worst-case time complexity for all operations (i.e.,) search, update and delete) in a general Binary Search tree$O(n)$$O(n \log n)$$O( \log n)$ for search and...