0% found this document useful (0 votes)
42 views16 pages

DCC Micro

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)
42 views16 pages

DCC Micro

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/ 16

JSPM’s

JAYAWANTRAO SAWANT
POLYTECHNIC, Handewadi Road,
Hadapsar, Pune-28
Department of Computer Engineering
Academic Year 2023-24

MICRO PROJECT
TITLE OF THE PROJECT

Share the file and folder in network by using password


offline

Program: CO Program code: CO4I


Course: DCC Course code: 22414
Class: SYCO1 Group No: 13
Project Guide: Ms.N.S. BAHIRAME

1
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

Certificate

This is to certify that KALUGADE NIRANJAN, DOKE AMIT, RASAL


PARTHRAJE, KHAMBALE YASH Roll No: 49,50,51,52 of III Semester
of Diploma in Computer Engineering of Institute JAYAWANTRAO
SAWANT POLYTECHNIC (Code: 0711) has completed the Micro Project
satisfactorily in Subject Computer Graphics (22318) for the academic year
2022- 2023 as prescribed in the curriculum.

Place: Hadapsar, Pune. Enrollment No: 2207110369,


2207110370,
2207110371,
2207110373.

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


……………….

………………………………..

Subject Teacher Head of the Department Principal

2
MICRO PROJECT
GROUP DETAILS

Sr No. Roll No. Name Enrollment No. Seat No.

1 49 KALUGADE NIRANJAN 2207110369


RAMCHANDRA

2 50 DOKE AMIT ANKUSH 2207110370


3 51 RASAL PARTRAJE SATISH 2207110371
4 52 KHAMBALE YASH BALAJI 2207110373

3
INDEX

Sr No. Content Page No.

1 Certificate 1

2 Group Details 2

3 Index 3

4 Annexure 1 4

5 Program Code 5

6 Output of the program 6

7 7
Annexure 2
8 9
Annexure 3(Teachers Evaluation Sheet)

4
JSPM’s

JAYAWANTRAO SAWANT POLYTECHNIC, Handewadi


Road, Hadapsar, Pune-28

Department of Computer Engineering

Academic Year 2023-24

Title of Micro project: Share the file and folder in network by using password offline

1.0 Brief Introduction:

1. Encrypt files or create password-protected archives.


2. Transfer them to a shared location.
3. Set access permissions requiring a password.
4. Distribute passwords to authorized users.
5. Users input the password to access shared files/folders

.2.0 Aim of Micro Project (In about 4 to 5 sentences)

This micro-Project aims at:

The aim is to securely share files and folders over a network, ensuring that only
authorized users can access them by requiring passwords, even when offline.

3.0Action Plan

Sr. Details of activity Planned start Planned Finish Name of Responsible


No date date Team members

1 Setup and configuration 01 March 2024 05 March 2024

2 Password management 05 March 2024 !0 March 2024

3 Testing and Training !0 March 2024 15 March 2024

4 Deployment and support 15 March 2024 20 March 2024

4.0 Resources required

Sr. Name of Specification Quantity Remarks


No. resource /
material

1 Computer Processor: 1
system with Inter®Pentium®[email protected].

5
broad Installed Memory-RAM: 4.00GB.
specifications
System type:32-bit Operating System

2 Software Window 10 1

 Explanation About Program

 C-Program For Sunrise

#include<graphics.h>
#include<conio.h>
#include<stdio.h>
void main()
{
int gd=DETECT,gm;
int i,j,k,t,q;
float x,y;
initgraph(&gd,&gm,"c:\\tc\\bgi");
setcolor(3);
rectangle(0,0,getmaxx(),getmaxy());
&nbsp;setcolor(2);
&nbsp;i=0;
for(t=0;t<getmaxx();t+=120)
{
line(t,250,t+60,170);
line(t+60,170,t+120,250);
}
line(0,400,getmaxx(),350);
setfillstyle(11,CYAN);
floodfill(2,420,2);
setfillstyle(4,LIGHTGREEN);
floodfill(1,300,2);

i=0;
while(i!=150)
{

setcolor(BLACK);
setfillstyle(SOLID_FILL,BLACK);
fillellipse(k,j,30,30);
setfillstyle(SOLID_FILL,LIGHTRED);
fillellipse(170+i,235-i,30,30);
j=235-i;
k=170+i;
i++;

6
setcolor(2);
for(t=0;t<getmaxx();t+=120)
{
line(t,250,t+60,170);
line(t+60,170,t+120,250);
}
setfillstyle(1,GREEN);
floodfill(202,200,GREEN);
delay(25);
}

for(i=36;i<80;i++)
for(j=0;j<=360;j+=20)
{
x=319+i*cos(((float)j*3.14)/180);
y=86+i*sin(((float)j*3.14)/180);
putpixel(x,y,LIGHTRED);
delay(1);
}
getch();
}

7
 Program Output:

8
JSPM’s

JAYAWANTRAO SAWANT POLYTECHNIC, Handewadi Road,


Hadapsar, Pune-28

Department of Computer Engineering

Academic Year 2022-23

Title of Micro project: Program for Sunrise.

1.0 Brief Description:


1. In this project we have use graphics code.
2. By using graphics we can draw circle, lines in the program.
3. In this project we have create Sunrise.
4. Develop c programs to draw basic graphics object.

2.0 Aim of Micro Project


1. Write a c program for Sunrise animation.

2. Displaying image data effectively.

3.0 Course Outcome Integrated

1. Manipulate visual and geometric information of images.


2. Implement standard algorithms to draw various graphics objects using C program.
3. Develop program for 2D-3D Transformation.
4. Implement Brenham’s algorithm to draw circle and line.
5. Develop programs to create circle, lines, curve's using algorithms.
6. Implement various clipping algorithm.

4.0 Actual Procedure Followed.

1. We both team member divided the work.


2. First team member coded the program to creating Sunrise animation.
3. And third team member coded the program to create basic object .
4. Both team member discussed the content was formulated.

9
5. The content was compiled into report.
6. Project report is ready for submission.

5.0 Actual Resources Used

Sr. Name of Specification Quantity Remarks


No. resource /
material

1 Computer Processor:Inter®Pentium®[email protected].
system with
Installed Memory-RAM: 4.00GB. 1
broad
specifications System type:32-bit Operating System

2 Software Turbo C -

6.0 Outputs of the Micro project.

7.0

Skill Developed/ Learning out of this Micro project

● Time management and planning.


● Co-ordination between team members.
**********

10
Teacher Evaluation Sheet

Name of student: KALUGADE NIRANJAN RAMCHANDRA


Enrollment No:2207110369
Name of programme: Computer Engineering. Semester: III
Course Title: Computer Graphics.
Code: 22318
Title of Micro Project: C program for Sunrise
Course Outcomes Achieved:
1. Manipulate visual and geometric information of images.
2. Implement standard algorithms to draw various graphics objects using C program.
3. Implement Brenham’s algorithm to draw circle and line.
4. Develop programs to create circle lines and curves using algorithms.
5. Implement various clipping algorithm.
6. Develop program for 2D-3D Transformation.

Evaluation as per suggested Rubric for Assessment of Micro Project


Sr. Characteristic to be Poor Average Good Excellent
No assessed (Marks1- (Marks 4-5) (Marks6-8) (Marks 9-10)
3)
1 Relevance to the course
2 Literature Survey /
Information collection
3 Project Proposal
4 Completion of the Target as
per Project Proposal
5 Analysis of data and
representation
6 Quality of Prototype/ Model
7 Report preparation
8 Presentation
9 Defense

11
12
Teacher Evaluation Sheet

Name of student: DOKE AMIT ANKUSH


Enrollment No: 2207110370
Name of programme: Computer Engineering. Semester: III
Course Title: Computer Graphics.
Code: 22318
Title of Micro Project: C program for Sunrise
Course Outcomes Achieved:
1. Manipulate visual and geometric information of images.
2. Implement standard algorithms to draw various graphics objects using C program.
3. Implement Brenham’s algorithm to draw circle and line.
4. Develop programs to create circle lines and curves using algorithms.
5. Implement various clipping algorithm.
6. Develop program for 2D-3D Transformation.

Evaluation as per suggested Rubric for Assessment of Micro Project


Sr. Characteristic to be Poor Average Good Excellent
No assessed (Marks1- (Marks 4-5) (Marks6-8) (Marks 9-10)
3)
1 Relevance to the course
2 Literature Survey /
Information collection
3 Project Proposal
4 Completion of the Target as
per Project Proposal
5 Analysis of data and
representation
6 Quality of Prototype/ Model
7 Report preparation
8 Presentation
9 Defense

13
Teacher Evaluation Sheet

Name of student: RASL PARTHRAJE SATISH


Enrollment No: 2207110371
Name of programme: Computer Engineering. Semester: III
Course Title: Computer Graphics.
Code: 22318
Title of Micro Project: C program for Sunrise
Course Outcomes Achieved:
1. Manipulate visual and geometric information of images.
2. Implement standard algorithms to draw various graphics objects using C program.
3. Implement Brenham’s algorithm to draw circle and line.
4. Develop programs to create circle lines and curves using algorithms.
5. Implement various clipping algorithm.
6. Develop program for 2D-3D Transformation.

Evaluation as per suggested Rubric for Assessment of Micro Project


Sr. Characteristic to be Poor Average Good Excellent
No assessed (Marks1- (Marks 4-5) (Marks6-8) (Marks 9-10)
3)
1 Relevance to the course
2 Literature Survey /
Information collection
3 Project Proposal
4 Completion of the Target as
per Project Proposal
5 Analysis of data and
representation
6 Quality of Prototype/ Model
7 Report preparation
8 Presentation
9 Defense

14
Teacher Evaluation Sheet

Name of student: KHAMBALE YASH BALAJI


Enrollment No: 2207110373
Name of programme: Computer Engineering. Semester: III
Course Title: Computer Graphics.
Code: 22318
Title of Micro Project: C program for Sunrise
Course Outcomes Achieved:
1. Manipulate visual and geometric information of images.
2. Implement standard algorithms to draw various graphics objects using C program.
3. Implement Brenham’s algorithm to draw circle and line.
4. Develop programs to create circle lines and curves using algorithms.
5. Implement various clipping algorithm.
6. Develop program for 2D-3D Transformation.

Evaluation as per suggested Rubric for Assessment of Micro Project


Sr. Characteristic to be Poor Average Good Excellent
No assessed (Marks1- (Marks 4-5) (Marks6-8) (Marks 9-10)
3)
1 Relevance to the course
2 Literature Survey /
Information collection
3 Project Proposal
4 Completion of the Target as
per Project Proposal
5 Analysis of data and
representation
6 Quality of Prototype/ Model
7 Report preparation
8 Presentation
9 Defense

15
Micro Project Evaluation Sheet
Process Assessment Product Assessment Total
Marks
Part A - Project Project Par B - Project Individual
Proposal Methodology Report/ working Presentation/ Viva 10
Model
(2 Marks) (2 Marks) (4 Marks)
(2 Marks)

Note: Every course teacher is expected to assign marks for group evaluation in first
3 columns and individual evaluation 4th column

Comment/ suggestion about team work/leadership/ interpersonal communication (If


any)
………………………………………………………………………………………………
………………………………………………………………………………………………
………………………………………………………………………………………………
………………………………………………………………………………………………
………………………………………………
………………………………………………………………………………………………
……………………………………………
Any other comment:
………………………………………………………………………………………………
………………………………………………………………………………………………
………………………………………………………………………………………………
………………………………………………………………………………………………
…………………………………………….

Name and Designation of the Faculty Member: Ms.N.S. Bahirame

Signature: ………………………

16

You might also like