|
|
|
|
| Title Name | IGNOU MMTE 2 SOLVED ASSIGNMENT |
|---|---|
| Type | Soft Copy (E-Assignment) .pdf |
| University | IGNOU |
| Degree | MASTER DEGREE PROGRAMMES |
| Course Code | MSCMACS |
| Course Name | M.Sc. Mathematics with Applications in Computer Science |
| Subject Code | MMTE 2 |
| Subject Name | Design & Analysis of Algorithms |
| Year | 2026 |
| Session | |
| Language | English Medium |
| Assignment Code | MMTE-02/Assignmentt-1//2026 |
| Product Description | Assignment of MSCMACS (M.Sc. Mathematics with Applications in Computer Science) 2026. Latest MMTE 02 2026 Solved Assignment Solutions |
| Last Date of IGNOU Assignment Submission | Last Date of Submission of IGNOU MMTE-02 (MSCMACS) 2026 Assignment is for January 2026 Session: 30th September, 2026 (for December 2026 Term End Exam). Semester Wise January 2026 Session: 30th March, 2026 (for June 2026 Term End Exam). July 2026 Session: 30th September, 2026 (for December 2026 Term End Exam). |
|
|
Ques 1.
Write an algorithm to find the first two largest numbers in an in array of integers. For example, given the input ,2 ,3 ,7 − ,4 ,1,5 the algorithm should output ,7 .5 State precisely a loop invariant for you algorithm. Prove that your loop invariant holds and hence conclude that your algorithm works.
Ques 2.
Analyse the algorithm to find the upper bound for run time of the above algorith.
Ques 3.
With the help of an example, explain the following:
i) Algorithm,
ii) Input and output for an algorithm
iii) Running time of an algorithm (5)
b) Illustrate the operations of partition in quick sort on the array
.
Ques 4.
Show step by step how you will construct a binary search tree by inserting keys in the order 12, 6, 4, 7, 8, 10, 7, 5, 13, 16, 11, starting from an empty binary tree. Explain step by step how you will delete the node with the key 13 from the binary tree. (5)
b) Illustrate the operations of performing counter sort on the array .
Ques 5.
Show the results of inserting the keys
C, R, A, U, J, S, F, T, O, P, M, L, N, W, Q
in order into an empty B-tree with minimum degree 2. Only draw the configurations of the tree just before some node must split, and also draw the final configuration.
Ques 6.
Using bipartite checking algorithm find out whether the graph given below is bipartite or not.
Ques 7.
Show step by step how the merge procedure of merge sort will merge the arrays ,1 ,3 ,4 ,7 11,9 13, 14, and ,2 ,5 ,6 10,8 12, .
Ques 8.
For the following set of points, describe how the CLOSET-PAIR algorithm finds a closest pair of points:
(1,2),(2,−1),(3,−3),(3,2),(−3,4),(−1,2),(2,3),(1,1),(−5,−2).
Ques 9.
Find an optimal parenthesisation of a matrix chain product whose sequence of dimensions is (4,8,7,2,3).
Ques 10.
Taking v1 as the root, find a spanning tree of the following graph using the breadth first search (BFS) algorithm.
Ques 11.
Determine an LCS of (1, 1, 1, 1, 0, 1, 1, 0, 1, 0) and (1, 1, 1, 0, 0, 1, 1, 0, 1, 0).
Ques 12.
Apply DFS algorithm to find a spanning tree of the following graph. Also find all the fundamental cycles of the spanning tree.
Ques 13.
Use Kruskal's algorithm to find a minimal spanning tree in the graph given below
Ques 14.
Use Dijkstra's algorithm to find the shortest paths in the graph given below with a as the source vertex.
Ques 15.
Construct a MAXHEAP tree on the following list of numbers
15, 22, 7, 10, 43, 52 13, 16,
Ques 16.
Construct a binary search tree with the following keys, inserting them in the given order:
110, 8, 19, 6, 9, 12, 32.
Ques 17.
Construct the Huffman code tree for the set of frequencies in the table below:
| Character | Frequency |
| A | 5 |
| B | 1 |
| C | 6 |
| D | 3 |
| E | 4 |
Ques 18.
Show the minimum heap after each of the following operations
i) Create with values 13, 46, 68, 15, 87, 4, 33, 21, 1, 79.
ii) Insertion of value 9.
iii) Update of value 1 by 71.
Ques 19.
Write an algorithm to find the first two largest numbers in an in array of integers. For example, given the input ,2 ,3 ,7 − ,4 ,1,5 the algorithm should output ,7 .5 State precisely a loop invariant for you algorithm. Prove that your loop invariant holds and hence conclude that your algorithm works.
Ques 20.
Analyse the algorithm to find the upper bound for run time of the above algorith.
Ques 21.
With the help of an example, explain the following:
i) Algorithm,
ii) Input and output for an algorithm
iii) Running time of an algorithm (5)
b) Illustrate the operations of partition in quick sort on the array
.
Ques 22.
Show step by step how you will construct a binary search tree by inserting keys in the order 12, 6, 4, 7, 8, 10, 7, 5, 13, 16, 11, starting from an empty binary tree. Explain step by step how you will delete the node with the key 13 from the binary tree. (5)
b) Illustrate the operations of performing counter sort on the array .
Ques 23.
Show the results of inserting the keys
C, R, A, U, J, S, F, T, O, P, M, L, N, W, Q
in order into an empty B-tree with minimum degree 2. Only draw the configurations of the tree just before some node must split, and also draw the final configuration.
Ques 24.
Using bipartite checking algorithm find out whether the graph given below is bipartite or not.
Ques 25.
Show step by step how the merge procedure of merge sort will merge the arrays ,1 ,3 ,4 ,7 11,9 13, 14, and ,2 ,5 ,6 10,8 12, .
Ques 26.
For the following set of points, describe how the CLOSET-PAIR algorithm finds a closest pair of points:
(1,2),(2,−1),(3,−3),(3,2),(−3,4),(−1,2),(2,3),(1,1),(−5,−2).
Ques 27.
Find an optimal parenthesisation of a matrix chain product whose sequence of dimensions is (4,8,7,2,3).
Ques 28.
Taking v1 as the root, find a spanning tree of the following graph using the breadth first search (BFS) algorithm.
Ques 29.
Determine an LCS of (1, 1, 1, 1, 0, 1, 1, 0, 1, 0) and (1, 1, 1, 0, 0, 1, 1, 0, 1, 0).
Ques 30.
Apply DFS algorithm to find a spanning tree of the following graph. Also find all the fundamental cycles of the spanning tree.
Ques 31.
Use Kruskal's algorithm to find a minimal spanning tree in the graph given below
Ques 32.
Use Dijkstra's algorithm to find the shortest paths in the graph given below with a as the source vertex.
Ques 33.
Construct a MAXHEAP tree on the following list of numbers
15, 22, 7, 10, 43, 52 13, 16,
Ques 34.
Construct a binary search tree with the following keys, inserting them in the given order:
110, 8, 19, 6, 9, 12, 32.
Ques 35.
Construct the Huffman code tree for the set of frequencies in the table below:
| Character | Frequency |
| A | 5 |
| B | 1 |
| C | 6 |
| D | 3 |
| E | 4 |
Ques 36.
Show the minimum heap after each of the following operations
i) Create with values 13, 46, 68, 15, 87, 4, 33, 21, 1, 79.
ii) Insertion of value 9.
iii) Update of value 1 by 71.
|
|
Looking for IGNOU MMTE 2 Solved Assignment 2026. You are on the Right Website. We provide Help book of Solved Assignment of MSCMACS MMTE 2 - Design & Analysis of Algorithmsof year 2026 of very low price.
If you want this Help Book of IGNOU MMTE 2 2026 Simply Call Us @ 9199852182 / 9852900088 or you can whatsApp Us @ 9199852182
IGNOU MSCMACS Assignments Jan - July 2025 - IGNOU University has uploaded its current session Assignment of the MSCMACS Programme for the session year 2026. Students of the MSCMACS Programme can now download Assignment questions from this page. Candidates have to compulsory download those assignments to get a permit of attending the Term End Exam of the IGNOU MSCMACS Programme.
Download a PDF soft copy of IGNOU MMTE 2 Design & Analysis of Algorithms MSCMACS Latest Solved Assignment for Session January 2025 - December 2025 in English Language.
If you are searching out Ignou MSCMACS MMTE 2 solved assignment? So this platform is the high-quality platform for Ignou MSCMACS MMTE 2 solved assignment. Solved Assignment Soft Copy & Hard Copy. We will try to solve all the problems related to your Assignment. All the questions were answered as per the guidelines. The goal of IGNOU Solution is democratizing higher education by taking education to the doorsteps of the learners and providing access to high quality material. Get the solved assignment for MMTE 2 Design & Analysis of Algorithms course offered by IGNOU for the year 2026.Are you a student of high IGNOU looking for high quality and accurate IGNOU MMTE 2 Solved Assignment 2026 English Medium?
Students who are searching for IGNOU M.Sc. Mathematics with Applications in Computer Science (MSCMACS) Solved Assignments 2026 at low cost. We provide all Solved Assignments, Project reports for Masters & Bachelor students for IGNOU. Get better grades with our assignments! ensuring that our IGNOU M.Sc. Mathematics with Applications in Computer Science Solved Assignment meet the highest standards of quality and accuracy.Here you will find some assignment solutions for IGNOU MSCMACS Courses that you can download and look at. All assignments provided here have been solved.IGNOU MMTE 2 SOLVED ASSIGNMENT 2026. Title Name MMTE 2 English Solved Assignment 2026. Service Type Solved Assignment (Soft copy/PDF).
Are you an IGNOU student who wants to download IGNOU Solved Assignment 2024? IGNOU MASTER DEGREE PROGRAMMES Solved Assignment 2023-24 Session. IGNOU Solved Assignment and In this post, we will provide you with all solved assignments.
If you’ve arrived at this page, you’re looking for a free PDF download of the IGNOU MSCMACS Solved Assignment 2026. MSCMACS is for M.Sc. Mathematics with Applications in Computer Science.
IGNOU solved assignments are a set of questions or tasks that students must complete and submit to their respective study centers. The solved assignments are provided by IGNOU Academy and must be completed by the students themselves.
| Course Name | M.Sc. Mathematics with Applications in Computer Science |
| Course Code | MSCMACS |
| Programm | MASTER DEGREE PROGRAMMES Courses |
| Language | English |
|
IGNOU MMTE 2 Solved Assignment
|
ignou assignment 2026, 2026 MMTE 2
|
||
|
IGNOU MMTE 2 Assignment
|
ignou solved assignment MMTE 2
|
||
|
MMTE 2 Assignment 2026
|
solved assignment MMTE 2
|
||
|
MMTE 2 Assignment 2026
|
assignment of ignou MMTE 2
|
||
|
Download IGNOU MMTE 2 Solved Assignment 2026
|
|
||
|
Ignou result MMTE 2
|
Ignou Assignment Solution MMTE 2
|