Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 14

Amrutvahini Polytechnic, Sangamner

Academic Year: 2021 -2022

Report
On
Micro Project

“Walking Man In Rain ”

Program Code: Computer Technology Dept


Course Name: Object Oriented Programming
Course Code: 22316

Submitted by

Roll No. Name


17 Devendra Somnath Hase

18 Kalyani Sharad Batwal

34 Aditya Sunil Kadlag

41 Sarvesh Kishor Hase

Submitted to

Ms. Wakchaure S. L
MAHARASHTRA STATE BOARD OF
TECHNICAL EDUCATION

Certificate

This is to certify that Mr. / Ms. Aditya Sunil Kadlag, Roll No. 34 of Third

Semester Diploma in Computer Technology Dept(CM1I) of Amrutvahini

Polytechnic (0080/1105) has completed the Microproject satisfactory in Subject

Object Oriented Programming (22316) for the academic year 2021 to 2022 as

prescribed in the MSBTE curriculum.

Place: Sangamner Enrollment No.: 2000800481

Date: 22/11/2021

Subject Teacher Head of the Department Principal

Seal of
Institution
Annexure – I
Micro-Project Proposal

Title of Micro-Project

“Walking Man in Rain”

1.0 Aim/Benefits of the Micro-Project

It is a graphics animation of a man walking in rain made by C Program using ‘graphics’

header File.

2.0 Course Outcomes Addressed

Course Outcome Statement


Recognize 2 the basic visual and geometric information of images.
Standard algorithm to draw various graphics objects using c programming.
Implement a program for Transformation, &Use projection to visualize object.
Use 3 various clipping algorithm to clip the object.
Implement 3 the program to create curve using algorithm.

3.0 Proposed Methodology:

 First, we will decide the topic of our project.


 We will discuss about our project.
 We will start collecting data from Websites and textbook.
 Make an actual project using Turbo C.
 Then we will make an actual project report.
4.0 Action Plan

Sr. Planned Planned Name of Team


Details of activity
No. Start date Finish date Members
1. Formation of Group & Selection of Topic 14/11/21 14/11/21 All members
2. Submission of Proposed Plan 15/11/21 15/11/21 All members
Project Definition and Design Structure,
3. 18/11/21 18/11/21 All members
Design Algorithm, Design Flowchart
4. Coding of Project and Testing of Program 22/11/21 25/11/21 All members
5. Demonstration of project 26/11/21 26/11/21 All members
6. Submission of Final Report 30/11/21 30/11/21 All members

5.0 Resources Required

Sr.
Name of Resource/material Specifications Quantity Remarks
No.
Computer System with broad Dell Pc 8GB
1.
specifications Ram
2. Operating System Win 10
1
3. Software VS Code
4. Keyboard Corsair RGB
5. Mouse Logitech

Names of Team Members with Roll Nos:

Sr. Roll.
Name of Team Members Enrollment No.
No. No.
17
1. Devendra Somnath Hase 2000800462

2. 18 Kalyani Sharad Batwal 2000800464


3. 34 Aditya Sunil Kadlag 2000800481
4. 41 Sarvesh Hase 2000800488

Teacher Signature

(Ms. Wakchaure S. L)
Annexure – II
Micro-Project Report

Title of Micro-Project
“Walking Man in Rain”

1.0 Rationale

To implement graphics and animation using graphics header file and creating man walking in
rain animation in C Language.

2.0 Aims/Benefits of the Micro-Project

1. Create a graphics program in C language for Creating a Graphics Animations.


2. Learning about graphics and C language.

3.0 Course Outcomes Addressed

Course Outcome Statement


Recognize 2 the basic visual and geometric information of images.
Standard algorithm to draw various graphics objects using c programming.
Implement a program for Transformation, &Use projection to visualize object.
Use 3 various clipping algorithm to clip the object.
Implement 3 the program to create curve using algorithm.

4.0 Literature Review

There is a lot of work report in various publications in term of converter topology, control strategy
and actual implementation. The virtual reality (VR) technology is used to create virtual environment
that behaves like real world representation and user can interact with it . The technology is developed
combing computer graphics, multimedia technology and stereo display, stereo sound, and Human
computer interaction technology .
5.0 Actual Methodology Followed
1) Searching information using various internet resources.
2) Verifying and proofreading the information.
3) Coding out the program.
4) Checking the validity of the information.
5) Preparing a word document for the information to be typed.
6) Typing the information with appropriate font and font size.
7) Snapping suitable images for better clarification and pasting them in word document.

6.0 Actual Resources Used

Sr.
Name of Resource/material Specifications Quantity Remarks
No.
Computer System with broad Dell Pc 8GB
1.
specifications Ram
2. Operating System Win 10
3. Software VS Code 1
4. Keyboard Corsair RGB
5. Mouse Logitech

7.0 Outputs of the Micro-Projects:

#include<stdio.h>

#include<conio.h>

#include<graphics.h>

#include<stdlib.h>

void main(){

int gr=DETECT,gm;

int i,x,y,j;

initgraph(&gr,&gm,"C:\\TURBOC3\\BGI");
// man

for(j=1;j<600;j=j+5)

line(0,400,800,400);

circle(30+j,280,20); //head

line(30+j,300,30+j,350); //body

line(30+j,330,70+j,330); //hand

if(j%2==0){

line(30+j,350,25+j,400); //left leg

line(30+j,350,10+j,400); // right

else{

line(30+j,350,35+j,400); //transition

delay(20);

//umbrela

line(70+j,250,70+j,330);

pieslice(70+j,250,180,0,80);

// rain

for(i=0;i<300;i++)

x=random(800);

outtextxy(x,y,"/");

delay(170);

cleardevice();
}

getch();

closegraph();

8. Skill Developed / Learning outcomes:

● Analyzing the problem

● Problem solving approach

● Planning

● Design skill

● Logical skill

● Programming

● Testing and Troubleshooting

● Presentation

● Report writing

9.Applications of the Micro-Project:


 Implementing Graphics
 C Language

Teacher Signature
(Mr. Wackchaure S.L)

Annexure – III
Suggested Rubric for Assessment of Micro-Project

(The marks may be allowed to the characteristics of the Micro Project by considering the suggested rubrics)

Sr. Characteristic to Poor Average Good Excellent


No. be assessed ( Marks 1 - 3 ) ( Marks 4 - 5 ) ( Marks 6 - 8 ) ( Marks 9- 10 )
Relevance to the Related to very few Addressed at-least Addressed more than
1 Related to some LOs
course LOs one CO one CO
Literature Not more than two
At-least 5 relevant
Review sources (primary and At –least 7 relevant About 10 relevant
2 sources, at least 2
/Information secondary), very old sources, most latest sources, most latest
latest
collection reference
Completion of
Completed less than Completed 60 to Completed more than
3 the Target as per Completed 50 to 60%
50% 80% 80 %
project proposal
Enough data
Sufficient and Sufficient and collected by
appropriate sample, appropriate sample, sufficient and
Sample Size small,
enough data enough data appropriate sample
Analysis of Data data neither
generated but not generated which is size. Proper
4 and organized nor
organized and not organized and inferences by
representation presented well
presented well. No or presented well but organizing and
poor inferences are poor inferences are presenting data
drawn drawn through tables, charts
and graphs.
Well
Well
Just assembled/fabricated
assembled/fabricated
assembled/fabricated with proper
with proper
and parts are not functioning parts. In
functioning parts. In
Quality of functioning well. Not proper shape, within
Incomplete proper shape, within
5 Prototype/Model in proper shape, tolerance dimensions
fabrication/assembly. tolerance dimensions
dimensions beyond and good
and good
tolerance limit. finish/appearance.
finish/appearance.
Appearance/ finish is But no creativity in
Creativity in design
shabby. design and use of
and use of material
material
Nearly sufficient and
Very short, poor Very detailed,
correct details about Detailed, correct and
quality sketches, correct, clear
methods, material, clear description of
Details about description of
precautions and methods, materials,
Report methods, material, methods, materials,
6 conclusion. But precautions and
Preparation precaution and precautions and
clarity is not there in Conclusions.
conclusions omitted, conclusions. Enough
a presentation. But Sufficient Graphic
some details are tables, charts and
not enough graphic Description.
wrong sketches
description.
Major information is Includes major Includes major Well organized,
not included, information but not information and well includes major
7 Presentation
information is not well organized and organized but not information, well
well organized. not presented well presented well presented
Replied to a
Could not reply to a Replied properly to a
considerable number Replied most of the
8 Viva considerable number considerable number
of questions but not questions properly
of questions. of questions.
very properly
Annexure – IV

Micro-Project Evaluation Sheet

Name of Student: Devendra Somnath Hase Enrollment No.: 2000800462

Name of Program: Walking Man in Rain Semester: 3

Course Title: Computer Graphics. Course Code: 22316

Title of the Micro-project: Walking Main in Rain

Course Outcomes Achieved:

Course Outcome Statement


Recognize 2 the basic visual and geometric information of images.
Standard algorithm to draw various graphics objects using c programming.
Implement a program for Transformation, &Use projection to visualize object.
Use 3 various clipping algorithm to clip the object.
Implement 3 the program to create curve using algorithm.

Sr. Poor Average Good Excellent Sub


Characteristic to be assessed
No. (Marks 1-3) (Marks 4-5) (Marks 6-8) (Marks 9- 10) Total

A. Process and Product Assessment (6 Marks)

1 Relevance to the course


Literature Survey / Information
2
Collection
Completion of the Target as per
3
project proposal
Analysis of Data and
4
representation
5 Quality of Prototype/Model
6 Report Preparation
B. Individual Presentation/ Viva (4 Marks)

7 Presentation

8 Viva

(A) (B)
Total Marks
Process and Product Assessment (6 Individual Presentation/Viva
10
marks) (4 marks)
Comments/Suggestions about teamwork/leadership/interpersonal communication (if any)
……………………………………………………………………………………………………….......
Name and designation of the Faculty Member: Ms.S.L.Wachaure
Dated Signature: …………………………………….
Annexure – IV
Micro-Project Evaluation Sheet

Name of Student: Sarvesh Kishor Hase Enrollment No.: 2000800488

Name of Program: Walking Man in Rain Semester: 3

Course Title: Computer Graphics. Course Code: 22316

Title of the Micro-project: Walking Main in Rain

Course Outcomes Achieved:

Course Outcome Statement


Recognize 2 the basic visual and geometric information of images.
Standard algorithm to draw various graphics objects using c programming.
Implement a program for Transformation, &Use projection to visualize object.
Use 3 various clipping algorithm to clip the object.
Implement 3 the program to create curve using algorithm.

Sr. Poor Average Good Excellent Sub


Characteristic to be assessed
No. (Marks 1-3) (Marks 4-5) (Marks 6-8) (Marks 9- 10) Total

B. Process and Product Assessment (6 Marks)

1 Relevance to the course


Literature Survey / Information
2
Collection
Completion of the Target as per
3
project proposal
Analysis of Data and
4
representation
5 Quality of Prototype/Model
6 Report Preparation
C. Individual Presentation/ Viva (4 Marks)

7 Presentation

8 Viva

(A) (B)
Total Marks
Process and Product Assessment (6 Individual Presentation/Viva
10
marks) (4 marks)
Comments/Suggestions about teamwork/leadership/interpersonal communication (if any)
……………………………………………………………………………………………………….......
Name and designation of the Faculty Member: Ms.S.L.Wachaure
Dated Signature: …………………………………….
Annexure – IV

Micro-Project Evaluation Sheet

Name of Student: Aditya Sunil kadlag Enrollment No.: 2000800481

Name of Program: Walking Man in Rain Semester: 3

Course Title: Computer Graphics. Course Code: 22316

Title of the Micro-project: Walking Main in Rain

Course Outcomes Achieved:

Course Outcome Statement


Recognize 2 the basic visual and geometric information of images.
Standard algorithm to draw various graphics objects using c programming.
Implement a program for Transformation, &Use projection to visualize object.
Use 3 various clipping algorithm to clip the object.
Implement 3 the program to create curve using algorithm.

Sr. Poor Average Good Excellent Sub


Characteristic to be assessed
No. (Marks 1-3) (Marks 4-5) (Marks 6-8) (Marks 9- 10) Total

C. Process and Product Assessment (6 Marks)

1 Relevance to the course


Literature Survey / Information
2
Collection
Completion of the Target as per
3
project proposal
Analysis of Data and
4
representation
5 Quality of Prototype/Model
6 Report Preparation
D. Individual Presentation/ Viva (4 Marks)

7 Presentation

8 Viva

(A) (B)
Total Marks
Process and Product Assessment (6 Individual Presentation/Viva
10
marks) (4 marks)
Comments/Suggestions about teamwork/leadership/interpersonal communication (if any)
……………………………………………………………………………………………………….......
……………………………………………………………………………………………………….......
Name and designation of the Faculty Member: Ms.S.L.Wachaure
Dated Signature: …………………………………….
Annexure – IV

Micro-Project Evaluation Sheet

Name of Student: Kalyani Sharad Batwal. Enrollment No.: 2000800464

Name of Program: Walking Man in Rain Semester: 3

Course Title: Computer Graphics. Course Code: 22319

Title of the Micro-project: Walking Main in Rain

Course Outcomes Achieved:

Course Outcome Statement


Recognize 2 the basic visual and geometric information of images.
Standard algorithm to draw various graphics objects using c programming.
Implement a program for Transformation, &Use projection to visualize object.
Use 3 various clipping algorithm to clip the object.
Implement 3 the program to create curve using algorithm.

Sr. Poor Average Good Excellent Sub


Characteristic to be assessed
No. (Marks 1-3) (Marks 4-5) (Marks 6-8) (Marks 9- 10) Total

D. Process and Product Assessment (6 Marks)

1 Relevance to the course


Literature Survey / Information
2
Collection
Completion of the Target as per
3
project proposal
Analysis of Data and
4
representation
5 Quality of Prototype/Model
6 Report Preparation
E. Individual Presentation/ Viva (4 Marks)

7 Presentation

8 Viva

(A) (B) Total Marks


Process and Product Assessment (6 Individual Presentation/Viva 10
marks)
(4 marks)

Comments/Suggestions about teamwork/leadership/interpersonal communication (if any)


……………………………………………………………………………………………………….......
……………………………………………………………………………………………………….......
Name and designation of the Faculty Member: Ms.S.L.Wachaure
Dated Signature: …………………………………….

You might also like