recategorized by
242 views
0 votes
0 votes
Q1 .   Let G be a connected planner graph with 10 vertices.if the number of edges on each face is three then the number of edges in graph G is _____

A 24     B.20    C.32      D.64

 

Q2.  Let  "a(n)" represent the number of bits of length n containing two consecutive 1s what is the recurrence relation of "a(n)"?

A.    a(n-2) + a(n-1) + 2^n-2

B.     a(n-2) + 2a(n-1) + 2^n-2

C.   2a(n-2) + a(n-1) + 2^n-2

D.   2a(n-2) + 2a(n-1) + 2^n-2

 

Q2 i am getting Option A
recategorized by

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
0 votes
0 votes
1 answer
2
0 votes
0 votes
0 answers
3
souren asked Jun 12, 2019
1,009 views
Should not there be a second condition stating i = j-1 in While loop's conditional statement,if not then it seems to me while loop will be a infinite loop..
0 votes
0 votes
0 answers
4
Deepesh Pai asked Dec 29, 2018
267 views
why DFS cannot find shortest path but BFS can?