DSUU Report

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

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

GOVERNMENT POLYTECHNIC MALVAN

MICRO PROJECT
Academic year: 2022-23

TITLE OF PROJECT

“ONLINE ADMISSION SYSTEM”

Program: CO Program code:

Course:DSU Course
code:22317
STUDENT / GROUP DETAILS :

Sr. Roll No. Enrollment Name of Group


No. No. Members
2101170139 Kanhaiya Naik
1Sr 2206
NO TOPICS
2101170172 Digambar Lugade
2. 2238
1 Introduction

2 Aim

3 Resources Requried

4 Program

5 Out put of the program

6 Conclusion

7 Reference
ACKNOWLEDGEMENT

I take this opportunity to express deep sense of gratitude and


sincere thanks for the invaluable guidance that I have received at
the worthy hands of my Prof. JOSHI Sir.
I express my thanks to our H.O.D. for Permitting
me to do this project and also to the entire staff Member who have
helped me directly or indirectly.
I also express my thanks to my friends for their
underlying support shown during the preparation of this project.
ONLINE ADMISSION SYSTEM

1.0 Brief Introduction:-


The system as the name clarifies is developed
School, Colleges and Universities to help automate
the admission procedure. The system is an internet
based application which can be accessed from
anytime anywhere basis. the system has three tier
access models.

2.0 Aim of the Micro-project:


 To understand the concepts online Admission and its
Features.
 To understand Use of Technology and Applications.
RESOURCES REQUIRED:

Sr. Name of Specifica quantity Remark


No.
Resource tion
1 Windows
Computer system 10 1
2 Website https://en.wikipedia.org/ 1
wiki/IPv6address ing
Data
3 structu 1
-re
using
C
__PROGRAM__

// SYIF_DSU_Microproject_GRP_4
// Date 05-12-2021

#include
<stdio.h>
#include
<string.h>
#define size 100
typedef struct admission
{
//personel info

char
student_name[30];
char DOB[12];
char
gender[7];
int income;
float percentages_10th;

//college info

char
institute_name[50];
char branch[25];
int year;
int
total_fees;
int
paid_fees;
int remaining_fees;
char
admission_date[12];
char place[15];
} student;

void input(student *s, int i)


{
printf("\n \n\n* Personel Info
Of Student - \n\n");
fflush(stdin);
printf("\tFull Name -
");
gets(s[i].student_name
);
printf("\tDate Of Birth -
"); gets(s[i].DOB);
printf("\tGender - ");
gets(s[i].gender);
printf("\tAnnual Family Income (rs.) -
"); scanf("%d", &s[i].income);
printf("\t10th Percentage - ");
scanf("%f",
&s[i].percentages_10th);
printf("\n* Institute Info - \n\
n");
fflush(stdin); printf("\
tInstitute Name - ");
gets(s[i].institute_name);
printf("\tBranch - ");
gets(s[i].branch);
printf("\tYear(1,2,3) - ");
scanf("%d", &s[i].year);
printf("\tTotal Fees - ");
scanf("%d",
&s[i].total_fees);
printf("\tPaid Fees - ");
scanf("%d",
&s[i].paid_fees);
s[i].remaining_fees = s[i].total_fees -
s[i].paid_fees; printf("\tRemaining Fees - %d\n",
s[i].remaining_fees); fflush(stdin);
printf("\tAdmission Date -
");
gets(s[i].admission_date);
printf("\tPlace - ");
gets(s[i].place);
printf("\n \n");
}

void display(student *s, int i)


{
printf("\n \
n"); printf("\n\t*** Student Data ***\n\n");
printf("\n* Personel Info - \n\n");
printf("\tFull Name - %s\n",
s[i].student_name); printf("\tDate Of Birth
- %s\n", s[i].DOB); printf("\tGender - %s\
n", s[i].gender);
printf("\tAnnual Family Income (rs.) - %d\n",
s[i].income); printf("\t10th Percentage - %f\n",
s[i].percentages_10th); printf("\n* College Info - \
n\n");
printf("\tInstitute Name - %s\n",
s[i].institute_name); printf("\tBranch - %s\n",
s[i].branch); printf("\tYear(1,2,3) - %d\n",
s[i].year); printf("\tTotal Fees - %d\n",
s[i].total_fees); printf("\tPaid Fees - %d\n",
s[i].paid_fees); printf("\tRemaining Fees - %d\n",
s[i].remaining_fees); printf("\tAdmission Date -
%s\n", s[i].admission_date); printf("\tPlace - %s\
n", s[i].place);
printf("\n \n");
}

int main()
{
student s[size];
int i = 0, op, top =
0; char name[30];
printf("\n \
n"); printf("\n\t*** Diploma Admission Process ***\n");
do
{
printf("\n \n");
printf("\n\t\t*** Operations ***\n\n\t[1]. New Admission\n\t[2].
Search
Student\n\t[3]. Quit\n\n ");
printf("Choose Operation -
"); scanf("%d", &op);
switch (op)
{
case 1:
input(s,
top); top++;
break
; case 2:
fflush(stdin);
printf("\nName of the student to be search
- "); gets(name);
fflush(stdin
); int j =
0;
for (j; j <= top; j++)
{
i = strcmp(name,
s[j].student_name); if (i == 0)
{
printf("\n***! Student Found !***\n\
n"); display(s, j);
break;
}
if (j == top && i != 0)
printf("\nThere is no such student
available..\n"); i = 0;
}
break
; case 3:
return 0;

default:
printf("\n\t** Invalid Option **\
n"); break;
}

} while (i < size);


}
OUTPUT OF THE
PROGRAM ______________________________

*** Diploma Admission Process ***

*** Operations ***

[1]. New Admission


[2]. Search Student
[3]. Quit

Choose Operation - 1

* Personel Info Of Student -

Full Name –Kanhaiya


Naik Date Of Birth -
12/01/2005 Gender -
Male
Annual Family Income -
50000 10th Percentage -
86.40

* Institute Info -

Institute Name – Govt. Poly.


Malvan Branch – Computer
Year(1,2,3) - 2
Total Fees -
7500
Paid Fees -
7000
Remaining Fees – 500
Admission Date - 12/01/2022
Place - Malvan
*** Operations ***

[1]. New Admission


[2]. Search Student
[3]. Quit

Choose Operation - 1

* Personel Info Of Student -

Full Name-
Swapnil Ch. Date
Of Birth –
1/01/2005 Gender
- male
Annual Family Income----
10000 Percentage - 90

* Institute Info -

Institute Name – Govt. Poly.


Malvan Branch - Computer
Year(1,2,3) - 2
Total Fees -
7500 Paid Fees -
7400 Remaining
Fees -100
Admission Date -
1/1/2022 Place -
Malvan
*** Operations ***

[1]. New Admission


[2]. Search Student
[3]. Quit

Choose Operation - 1

* Personel Info Of Student -

Full Name–
Digambar L.
Date Of Birth -
7/11/2005 Gender
- male
Annual Family Income -
60000 10th Percentage -
91

* Institute Info -

Institute Name – Govt. Poly


Malvan
Branch - Computer
Year(1,2,3) - 2
Total Fees -
7500 Paid Fees -
7000 Remaining
Fees- 500
Admission Date-
7/01/22 Place -
Malvan
***Operations***
[1]. New Admission
[2]. Search Student
[3]. Quit

Choose Operation - 2

Name of the student to be search – Kanhaiya Naik

***! Student Found !***

*** Student Data ***

* Personel Info Of Student -

Full Name –Kanhaiya


Naik Date Of Birth -
12/01/2005 Gender -
Male
Annual Family Income -
50000 10th Percentage -
86.40

* Institute Info -

Institute Name – Govt. Poly.


Malvan Branch – Computer
Year(1,2,3) - 2
Total Fees -
7500
Paid Fees -
7000
Remaining Fees – 500
Admission Date - 12/01/2022
Place - Malvan
*** Operations ***

[1]. New Admission


[2]. Search Student
[3]. Quit

Choose Operation - 2

Name of the student to be search

- Virat There is no such student

available..

*** Operations ***

[1]. New Admission


[2]. Search Student
[3]. Quit

Choose Operation - 3
PS D:\GRP_4_MICROPROJECTS>
OUTCOME OF MICROPROJECT:
 Understood the concept of programming.
 Understood technology and features.
REFERANCE :

 https://en.wikipedia.org/wiki/Transformer

 https://www.electronicshub.org/-transformers

 https://www.slideshare.net/

 https://www.scribd.com/
MAHARASHTRA STATE BOARD OF TECHNICAL
EDUCATION
Government polytechnic Malvan
Certificate This is to certify the Name – Kanhaiya Uttam Naik
Student of Third semester, Diploma in institute of
Government polytechnic malvan (3010) has completed the
Micro Project satisfactorily in Subject: Data structure using ‘C’
Using Computer Code:22317 for the academic year 2022-2023
as prescribed in the curriculum.

Place: Malvan Date:


Enrollment no : 2101170139 Seat no : 114826

Subject Teacher Head of the Department Principal


MAHARASHTRA STATE BOARD OF TECHNICAL
EDUCATION
Government polytechnic Malvan
Certificate This is to certify the Name – Digambar Rajendra
Lugade Student of Third semester, Diploma in institute of
Government polytechnic malvan (3010) has completed the
Micro Project satisfactorily in Subject: Data structure using ‘C’
Using Computer Code:22317 for the academic year 2022-2023
as prescribed in the curriculum.

Place: Malvan Date:


Enrollment no : 2101170172 Seat no :14858

Subject Teacher Head of the Department Principle

You might also like