IGNOU MMTE 2 SOLVED ASSIGNMENT

MMTE 2 Solved Assignment

MMTE 2: Design & Analysis of Algorithms

High Demand Verified Solution
★★★★★ 4.7/5 (73 Students)

₹80 ₹30

63% OFF You Save: ₹50

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 2/Assignment-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 BEGC-131 (BAG) 2025-26 Assignment is for January 2026 Session: 30th September, 2026 (for December 2025 Term End Exam).

Semester Wise
January 2025 Session: 30th March, 2026 (for June 2026 Term End Exam).
July 2025 Session: 30th September, 2025 (for December 2025 Term End Exam).
FormatReady-to-Print PDF (.soft copy)

📅 Important Submission Dates

Why Choose Our Solved Assignments?

Accuracy: Solved by IGNOU subject experts.
Guidelines: Strictly follows 2025-26 official word limits.
Scoring: Designed to help students achieve 90+ marks.
📋 Assignment Content Preview
Included:

MMTE 2 2025 - English

Assignment

Course Code: MMTE-002

Assignment Code: MMTE-002/TMA/2025

Maximum Marks: 100

1.

a) Define and explain the Big-O, Big - 2 and Big - notations with examples.

b) Explain the string matching problem with an example.

c) Explain the Longest Common Subsequence problem with an example.

2.

a) Sort the following numbers using the QuickSort algorithm: 2, 9, 7, 6, 4, 3, 8, 5

b) Construct a Binary Search Tree for the following sequence of numbers: 15, 50, 70, 60, 20, 90, 10, 40, 100, 35 with 40 as the value of the key for the root node.

3. a) Show the results of inserting the keys below in order into an empty B-tree of minimum degree 2:

2, 5, 4, 3, 6, 9, 8, 7, 1, 2

b) Determine the LCS of (1, 1, 1, 1, 1, 0, 0, 1, 1, 1) and (1, 0, 1, 0, 0, 1, 1, 0, 1, 0) using dynamic programming approach, showing all the steps.

4.

a) Find an optimal parenthesisation of a matrix chain whose sequence of dimensions is (5, 10, 3, 12, 15).

b) Let me NO {0} and n∈ N. Let the god of x, y ∈ Z be denoted by (x, y). Prove that (m, n) = (m (mod n), n).

5. a) 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

b) Find an optimal parenthesisation of the matrix chain product whose sequence of dimensions is 10, 25, 10, 5, 17.

6. a) Find a minimal spanning tree for the following graph using the Prim’s algorithm, showing all the steps. Take v1 as the root.

Image ignouassignments-ignouacademy-com-ignou-mmte-2-solved-assignment-html-p-ignou-99885

What is the weight of the minimal spanning tree you get? Give reasons for your answer.

b) Find the Huffman code for the following set of characters: 

Character a b c d e f
Frequency 50 30 20 12 5 3

Show all the steps of the algorithm. Also compute the number of bits require to encode the data.

7. a) Find the minimum spanning tree for the following graph using Kruskal’s algorithm: 

Image ignouassignments-ignouacademy-com-ignou-mmte-2-solved-assignment-html-p-solved-93505

b) Let α = 352 b, = 671. Find s and t such that as + bt = gcd ).b,a( Show the steps of the algorithm

8. a) Illustrate the working of the function PARTITION of the quicksort algorithm using the array and using the last element as PIVOT:

< 35, 22, 11, 45, 26, 71, 82, 37 >

b) Write the steps to search the numbers 18 and 45 in the binary search tree:

Image ignouassignments-ignouacademy-com-ignou-mmte-2-solved-assignment-html-p-ignou-30165

9. a) Explain the breadth first search algorithm using the graph given below with v1 as the source vertex:

Image ignouassignments-ignouacademy-com-ignou-mmte-2-solved-assignment-html-p-assignment-74266

For each stage of the algorithm give:

i) ),v(d π )v( for each vertex, where )v(d is the distance from the source to the vertex v and is the predecessor of v.

ii) White and gray vertices

iii) Vertices in the queue

Also, give the breadth search tree.

b) Check whether the following array represents a max-heap. If not run an algorithm to convert it into a max-heap:

6, 20, 18, 15, 17, 11, 12, 13

10. a) Illustrate, giving all the steps, the operation of the counting sort algorithm on the array

A = 3,4,2,7,5,4,2,1,3,1,7 .

b) Consider the following undirected graph G with vertices labeled from 1 to 5:

Image ignouassignments-ignouacademy-com-ignou-mmte-2-solved-assignment-html-p-assignment-40743

Determine if there exists a clique of size 3 in the graph G. If yes, provide the vertices forming the clique.

 


MMTE 2 2026 - English

Assignment (MMTE-002)

Course Code: MMTE-002

Assignment Code: MMTE-002/TMA/2026

Maximum Marks: 100

1. a) 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.

b) Analyse the algorithm to find the upper bound for run time of the above algorith.

Based on the image provided, here is the transcribed text of the exam questions:

2. a) 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
    equation

3. a) 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 equation

4. a) 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. 

   b) Using bipartite checking algorithm find out whether the graph given below is bipartite or not. 

Image ignouassignments-ignouacademy-com-ignou-mmte-2-solved-assignment-html-p-ignou-65910

5. a) 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, . 

b) 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).

c)   Find an optimal parenthesisation of a matrix chain product whose sequence of dimensions is (4,8,7,2,3).

6. a) Taking  v1 as the root, find a spanning tree of the following graph using the breadth first search (BFS) algorithm.

Image ignouassignments-ignouacademy-com-ignou-mmte-2-solved-assignment-html-p-solved-68940


    b)    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).

7.  a)    Apply DFS algorithm to find a spanning tree of the following graph. Also find all the fundamental cycles of the spanning tree.

Image ignouassignments-ignouacademy-com-ignou-mmte-2-solved-assignment-html-p-ignou-39538

    b)    Use Kruskal's algorithm to find a minimal spanning tree in the graph given below
Image ignouassignments-ignouacademy-com-ignou-mmte-2-solved-assignment-html-p-mmte-72602

    c)    Use Dijkstra's algorithm to find the shortest paths in the graph given below with a as the source vertex.

Image ignouassignments-ignouacademy-com-ignou-mmte-2-solved-assignment-html-p-solved-80273

8. a) Construct a MAXHEAP tree on the following list of numbers

15, 22, 7, 10, 43, 52 13, 16,


     b)  Construct a binary search tree with the following keys, inserting them in the given order:
          110, 8, 19, 6, 9, 12, 32.

9.  a)  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


     b)  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.

❓ Frequently Asked Questions (FAQs)
Q: How will I receive the PDF?
A: Immediately after payment, the download link will appear.

Q: Is this hand-written or typed?
A: This is a professional typed computer PDF. You can use it as a reference for your handwritten submission.
➕Other Details
Details
  • Latest IGNOU Solved Assignment
  • IGNOU MMTE 2 2026 Solved Assignment
  • IGNOU 2026 Solved Assignment
  • IGNOU MSCMACS M.Sc. Mathematics with Applications in Computer Science 2026 Solved Assignment
  • IGNOU MMTE 2 Design & Analysis of Algorithms 2026 Solved Assignment

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 2026 - 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 2026 - December 2026 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  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 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 assignments MMTE 2
 
 
Ignou result MMTE 2
Ignou Assignment Solution MMTE 2
 

 

Get the full solved PDF Now

Why Choose IGNOU Academy for Your Assignments?

Getting your assignments right is the first step toward a successful degree. At IGNOU Academy, we provide high-quality reference materials designed to simplify your academic journey. Here is why thousands of students trust us:

Disclaimer: These materials are intended as reference study guides to help you understand topics and formats. We encourage students to use these insights to prepare and write their own original assignments as per university guidelines.


How to Get Your Solved Assignment PDF

  1. Visit Us: Go to www.ignouacademy.com.

  2. Find Your Course: Search for your specific program and subject code.

  3. Select the Session: Choose the latest reference guide for the current academic session.

  4. Quick Checkout: Add to your cart, log in (or register quickly), and complete your purchase.

  5. Instant Access: Download your study material directly from your account after payment.


Step-by-Step: Downloading Official Question Papers

  1. Visit www.ignouacademy.com.

  2. Click on the "IGNOU Assignment Question Papers" section.

  3. Filter by your Course, Session, and Medium (English/Hindi).

  4. Download the PDF directly to your device.


How to Submit Your IGNOU Assignments


Tracking Your Submission Status

Want to know if your marks are updated?

  1. Visit the Student Zone on the official IGNOU website.

  2. Navigate to "Assignment Status."

  3. Enter your Enrollment Number and Program Code.

  4. View your submission dates, current status, and any remarks from the evaluator.


A Quick Tip for Success

Dear Students, remember that assignments carry 30% weightage in your final result. They aren't just a formality—they are a game-changer for your overall percentage. Regular study and timely submission are the keys to a high grade.

Success in IGNOU = Smart Study + Well-Prepared Assignments!


Need Help? Contact IGNOU Academy WhatsApp: +91 9199852182 Website: www.ignouacademy.com

Top
📞
Call Support Instant phone assistance IGNOU MMTE 2 SOLVED ASSIGNMENT
🟢
WhatsApp Chat Fast live messaging
Email Us Business enquiries & support