Attempt any Eight questions.
[8*5=40]
4.
Mention the necessary and sufficient conditions for Euler path and Euler circuit with example. [5]
5.
How do you represent set? Explain. [5]
6.
Using mathematical induction prove that sum of first N odd integers is N2. [5] 7.
Solve the recurrence relation an=an−1+an−2 with initial conditions a0=0 and a1=1. [5] 8.
Find the shortest path from a to z in following graph using Dijkstra’s algorithm. [5] 9.
Define Boolean and exponential function. Discuss about partial ordering. [2+3]
10.
Prove the correctness of following recursive algorithm for computing an using induction. Power(a, n) if (n = 0) return 1; else return a * Power(a, n-1); [5] 11.
Define spanning and minimum spanning tree? How do you traverse tree? [2+3]
12.
What do you mean by connectivity in graph? Discuss about Bipartite and Planar graph. [1+4]