CGR MP
CGR MP
CGR MP
Sr.
Characteristic to be Poor Average Good Excellent
No.
assessed (Marks 1-3) (Marks 4-5) (Marks 6 - 8) (Marks 9-10)
(A) Process and Product Assesssment (Convert above total marks out of 6 marks)
1 Relevance to the Course
Literature Survey /
2
Information Collection
Completion of the Target as
3
per project proposal
Analysis of data and
4
representation
5 Quality of Prototype / Model
6 Report Preparation
(B) Individual Presentation / Viva (Convert above total marks out of 4 marks)
8 Presentation
9 Viva
Micro – Project Evaluation Sheet:
Process Assessment Product Assessment
Part Project Part Individual Total
A – project Methodology B – Project Presentation / Marks 10
Name of Student Proposal (2 marks) Report / Working Viva (4 marks)
(2 marks) Model(2 marks)
Comments / Suggestions about team work / leadership / inter – personal communication (if any)
Sr.
Characteristic to be Poor Average Good Excellent
No. assessed (Marks 1-3) (Marks 4-5) (Marks 6 - 8) (Marks 9-10)
(A) Process and Product Assesssment (Convert above total marks out of 6 marks)
1 Relevance to the Course
Literature Survey /
2
Information Collection
Completion of the Target as
3
per project proposal
Analysis of data and
4
representation
5 Quality of Prototype / Model
6 Report Preparation
(B) Individual Presentation / Viva (Convert above total marks out of 4 marks)
8 Presentation
9 Viva
Micro – Project Evaluation Sheet:
Process Assessment Product Assessment
Part Project Part Individual Total
A – project Methodology B – Project Presentation / Marks 10
Name of Student Proposal (2 marks) Report / Working Viva (4 marks)
(2 marks) Model(2 marks)
Comments / Suggestions about team work / leadership / inter – personal communication (if any)
SHRI H. H. J. B POLYTECHNIC,
CHANDWAD-423101 (Nashik)
MICRO PROJECT
Academic year 2022-23
TITLE OF PROJECT
MOVING CAR
CERTIFICATE
This is to certify
1) Baviskar Sakshi Dattatray
2) Chavan Vidya Ravindra
Place: CHANDWAD
Date: / 12 /2023
Part A
Part B
1.0 Aim/Benefits of the Micro-Project- We understand the How to make moving car
code What is moving car project and what are requires functions for moving
car code ,what is its importance, and we understand what is the purpose of
micro project .
Program in C using graphics to move a car. A car is made using two rectangles
and two circles which act as tires of the car. A for loop is used to move the car
forward by changing the rectangle and circle coordinates and erasing the
previous contents on screen using clear viewport, you can also use clear device.
We understand the How to make moving car code What is moving car project
and what are requires functions for moving car code ,what is its importance,
and we understand what is the purpose of micro project .
We understand the How to make moving car code What is moving car project
and what are requires functions for moving car code , and got extra knowlege
what is its importance and what is the purpose of micro project .
#include <stdio.h>
#include <conio.h>
#include <graphics.h>
#include <dos.h>
void main()
{
clrscr();
int gd=DETECT,gm:
int x,y,i:
y=getmaxy()/2; x=x-300;
for(i=0;i<600;i=i+5)
{
cleardevice();
line(x-70+i,y,x+70+i,y);
line(x-69+i,y-3,x+69+i,y-3);
arc(x-105+i,y0,180,35); circle(x-105+1,y,25);
arc(x+105+i,y,0,180,35);
line (x-70+i,y,x+70+i,y);
line(x-69+1,y-3,x+69+1,y-3);
arc(x-105+i,y,0,180,35);
circle(x-105+i,y,25);
arc(x+105+i,y,0,180,35);
circle(x+105+i,y,25);
line(x+140+i,y,x+190+i,y); line(x+140+i,y-3,x+180+1,y-3);
line(x-190+i,y,x-140+i,y);
line(x-190+i,y-3,x-140+i,y-3);
ellipse (x+105+i,y,0,90,85,50);
ellipse(x-105+i,y,90,180,85,50); ellipse(x+i,y-50,0,180,105,35);
ellipse(x+i,y-50,349,192,95,30);
line(x-92+i,y-44,x+92+i,y-44); line(x-92+i,y-41,x+92+i,y-41);
delay(50);
}
getch();
}
PROGRAM OUTPUT :