You are on page 1of 10

A

Micro project report On

Kajuktli using c++


SUBMITTED TO M.S.B.T.E., Mumbai

For the Award of

DIPLOMA IN INFORMATION TECHNOLOGY


BY

Roll Name of Student Enrollmen no


no
3 Tejashri somnath nagane 2110740003

28 Sakshi Mahadev Shivashran 2110740032

43 Sakshi ravindra pore 2110740048

UNDER THE GUIDANCE OF


Mrs .Malgonde R. K.
DEPARTMENT OF INFORMATION TECHNOLOGY
NBA ACCREDIATED

SVERI’s College of Engineering (Polytechnic), Pandharpur


Gopalpur Pandharpur-413304
2020-21
AFFILIATED TO

M.S.B.T.E.
Evolution sheet for Micro Project

Academic Year:- 2022-23 Name of Faculty:- Mrs.Malgonde R K


Course:computer science Course code:- IF3I
Subject:- Object Oriented Programing Subject Code:- 22316
Language Using C++
Semester:- 3 Scheme:- I

Title of Project:- Kajukatli using c++

COs addressed by the Micro Project:

CO 1 Develop C++ programs to create kajuktli

CO 2 Develop C++ programs using classes and objects.

CO 3 Implement Inheritance in C++ program.

CO 4 Use Polymorphism in C++ program.

CO 5 Develop C++ programs to perform file operations.

Comments/Suggestions about team work/leadership/inter-personal communication (if any)

Marks out of 4
Marks out of 6 Total
for
for mars
Roll No Name of students performance
performance in out
in oral/
group activity of 10
Presentation

03 Tejashri somnath nagane


28 Sakshi Mahadev Shivashran
43 Sakshi ravindra pore

Name and
Signature of Mrs Malgonde R K
faculty
SVERI’s COLLEGE OF ENGINEERING (POLYTECHNIC), PANDHARPUR.

CERTIFICATE

This is to certify that the Project report entitled


“Text Editor (Notepad)”
Submitted by

Roll no Name of Student Enrollment no


03 Tejashri somnath nagane 2110740003
28 Sakshi Mahadev Shivashran 2110740032
43 Sakshi ravindra pore 2110740048

is a bonafide work carried out by above students, under the guidance of Mrs Malgonde R K. and it
is submitted towards the fulfillment of requirement of MSBTE, Mumbai for the award of Diploma in
Information Technology at SVERI’s COE (Polytechnic), Pandharpur during the academic year 2022-2023.

(Mrs Malgonde R. K)
Guide
(Mr.Bhandare P. S.) (Dr. Misal N. D.)
HOD Principal

Place: Pandharpur

Date: / /
Acknowledgement

“Kajukatli using c++” has been developed successfully with a great

contribution of two students in a period of two months. We like to appreciate

their guidance, encouragement and willingness since without their support

the project would not have been a success. We would like to give our

heartfelt gratitude to Principal Dr. N. D. Misal, Guide & HOD Mr.Misal G.S who

is the supervisor of our project for helping and encouraging us in many ways

to make our project a success. We would never been able to finish our work

without great support and enthusiasm from friends and support from our

family. We would like to thank the department of Information Technology, for

giving us permission to initiate this project and successfully finish it.


Introduction
Resources Used
Sr. Specificat Remark
No. ion
1 Intel Core i3/ i5, RAM 4GB As per
requirement
2 Operating System – Windows 10 As per
requirement
3 Application – Microsoft Word 2016 As per
requirement
Advantages

1. create kajulatli using c++.

COs addressed by the Micro Project:

CO 1 Print Stars On Output Screen


Methodology:-
#include<iostream.h>
#include<conio.h>

void main()
{

int i,j,n;
clrscr)();
cout<<“\n ENTER NUMBER OF STARS IN MIDDLE ROW=”;
cin>>n;
for(i=0;i<n;i++)
{
for(j=n-1;j>=0;j--)
{
if (j>i)
{
cout<<“ ”;
}
else
{
cout<<“* ”;
}
}
cout<<“\n”;
}
for(i=n-1;i>=0;i--)
{
for(j=n-1;j>=0;j--)
{
if (j>=i)
{
cout<<“ ”;
}
else
{
cout<<“* ”;
}
}
cout<<“\n”;
}

getch();
}
Output:-

ENTER NUMBER OF STARS IN MIDDLE ROW=5

*
* *
* * *
* * * *
* * *
* *
* *
Conclusion

References

You might also like