0% found this document useful (0 votes)
26 views8 pages

DSUmicroproject

Uploaded by

ekumavat7
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views8 pages

DSUmicroproject

Uploaded by

ekumavat7
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 8

MAHARASHTRA STATE BOARDOF TECHNICAL EDUCATION

GURU GOBIND SINGH POLYTECHNIC, NASHIK

MICROPROJECT
Academic year: 2023-24

TITLE OF PROJECT
Sum of two Matrix

Program: Computer Engineering Programcode: CO

Course: Data Structures using C

Course code: 22317


MAHARASHTRA STATE BOARDOFTECHNICALEDUCATION

Certificate
This is to certify that Mr. /Ms. ___________________________________________

Roll No. ______ of Semester of Diploma in of Institute,


Guru Gobind Singh Polytechnic, Nashik (Institute Code: 0369) has completed the
Micro Project satisfactorily in Subject – for the
academic year as prescribed in the curriculum.

Place: … … … … … … … … . Enrollment No: … … … … … … … … … … … … … … ..

Date: … … … … … … … … … Exam. Seat No: … … … … … … … … … … … … … … .

Subject Teacher Head of the Department Principal

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

GURUGOBINDSINGH POLYTECHNIC, NASHIK

MICROPROJECT
Academic year: 2023-24
TITLEOFPROJECT
Sum of two Matrix
Program: Computer Engineering

Programcode: CO

Course: Data Structure using ‘ C’ Course

code: 22317

Name of Guide: Mrs. D.R.Thakare


Group Details:
Sr. Name of group members Roll No. Enrollment No. Seat No.
No

1 Eshiket Kumawat 61 2203690308 397030

2 Shreyash Patil 97 2203690345 397066

3 Atharva Naik 80 2203690327

ANNEXURE II
Evaluation Sheet for the Micro Project
Academic Year: 2023-24 Name of the Faculty:
Course: Data Structure using ‘ C’ Course code: Semester:

Title of the project: Sum of two Matrix


___________________________________________________________________ Cos
addressed by Micro Project:

a. Perform Basic Operations on arrays.


b. Apply different searching and sorting techniques.
c. Implement basic operations on stack and queue using array representation .
d. Implement basic operations on Linked List
e. Implement program to create and traverse tree.
Major learning outcomes achieved by students by doing the project (a)
Practical outcome:
1. Implement array to perform insertion & deletion operation on one dimensional array.
2. Implement the searching of the given number in one dimensional array using linear
search, binary search methods.
3. Implement a program to sort the given list represented using array in ascending order by
sorting techniques like bubble sort, insertion sort and selection sort.
4. Understand the concept of stack and implement PUSH and POP operations on stack using
array.
5. Understand the concept of Linear Queue and Circular Queue to implement insertion and
deletion operation on Queue using array
6. Understand the concept of Link list and implement operations on Singly Link list
7. Understand how to create a Binary Tree
(b) Unit outcomes in Cognitive domain:
1) Explain given operations to be performed on the given type of data structure.
2) Explain working of given search and sort method with example.
3) Convert given expression from infix to postfix, prefix form.
4) Develop algorithm insert and delete from linked list.
5) Draw binary tree for given data set.
(c) Outcomes in Affective domain:
1) Follow safety practices.
2) Practice good housekeeping.
3) Demonstrate working as a leader/a team member.
4) Maintain tools and equipment.
5) Follow ethical practices.
Comments/suggestions about team work /leadership/inter-personal communication (if any)

_____________________________________________________________________________
_
_____________________________________________________________________________

Marks out of 6 for Marks out of 4for


performance performance in
in group activity oral/
presentation
(D5 Col.8)
(D5 Col.9)
Roll No Student Name Total out of 10

Mrs. D.R.Thakare

(Name & Signature of Faculty)


#include<stdio.h>
#include<conio.h>
void main ()
{
int i,j,a[3][3],b[3][3],c[3][3];
clrscr ()
printf(“enter the matrix :\n”);

for(i=0;i<3;i++)
{
for(j=0;j<3;j==)
{
scanf(“%d”,&a[3][3]);
}
}
printf(“\nenter the second matrix :\n”);
printf(“__________________________\n\n”);

for(i=0;i<3;i++)
{
for(i=o;i<3;i++)
{
scanf(“%d”,&b[3][3]);
}
}

printf(“\naddition of the matrix is :\n”);


printf(“__________________________\n\n”);
for(i=0;i<3;i++)
{
printf(“|\t”);;
for(j=0;j<3;j++)
{
c[i][j]=a[i][j]+b[i][j];
printf(“%d\t”,c[i][j]);
}
printf(“\n”);
}

printf(“_________________________________”);

getch();
Output :

You might also like