Cse103 Project
Cse103 Project
Submitted to:
A.B.M. Ashikur Rahman
ADJUNCT FACULTY, Department of Computer Science and Engineering
Submitted by:
K.M FAZLE RABII (2022-1-60-032)
MD SIFATULLAH SHEIKH (2022-1-60-029)
Submission Date:
21th May 2022
CONTENTS
Features 3
Project background 5
Functions 16
Checklist 18-22
conclusion 23
INTRODUCTION TO THE PROJECT
The vaccine management system is a software that handles all the data related to vaccination. The data
contains the name of the persons who have taken the vaccine. Previously the task of handling the
vaccination data was very difficult, so there was a need for software that can handle all the vaccination data.
Therefore the Vaccine Management System was designed. After the release of this system, the stress and
workload of employees were absolutely finished. It was also time-wasting for the employees to handle the
whole vaccination data with the help of a notebook. But now it hardly takes 5 to 10 minutes to search the
vaccination status of a particular person.
Features of Vaccine
Management System
Project
The aim of the system is to develop “vaccine MANAGEMENT SYSTEM” software, which should
automate the process to create and store vaccine details. The system is supposed to be used as a subsystem
in a large office system, which could be manual system or a computerized one. Therefore, the proposed
system must be able to function under both circumstances.
Hardware Requirements:
MEMORY SPACE:
o Minimum - 32 MB
o Recommended - 64 MB
Software Requirements:
Window derived from its name from the on-screen “WINDOWS” that it used to display information’s.
When a computer is switch on for working, it needs the operating system because all the activities of a
system are supervised by the operating system. The features of the operating system are:
Provides an interactive environment.
Graphical user interfaces.
The Commands are displayed on the screen and we don’t have to remember all commands.
GUI makes it easy to work with disks and directories. It can display tree like diagram of
directories, directories sub-0 directories on hard disk.
Point and Click.
User friendly.
PROJECT BACKGROUND
As the name suggests, the vaccine management system is software that handles all
the data related to vaccination. The data contains the name of the persons who have
taken the vaccine and also tells the current status of vaccine availability. Previously
the task of handling the vaccination data was very difficult, so there was a need for
software that can handle all the vaccination data.
Therefore the Vaccine Management System was designed. After the release of this
system, the stress and workload of employees were absolutely finished. It was also
time-wasting for the employees to handle the whole vaccination data with the help
of a notebook. But now it hardly takes 5 to 10 minutes to search the vaccination
status of a particular person.
EXPLANATION OF THE PROPOSED SYSTEM
OTP
PASSWORD
WELCOME PAGE
DASH-BOARD
ADD RECORD
NO/SERIAL
NAME
NID NO
MOBILE NO
Address
GENDER
INJECTED
VIEW DATA
MODIFY DATA
SEARCH
DELETE
EXIT
In login page:
OTP
|
Password
In registration page:
ADD RECORD
|
Name
|
Mobile No
|
NID NO
|
GENDER
|
PREVIOUS VACCINE INJECTED
|
ADDRESS
Here is also:
On the Login page, you have to enter the login credentials before
accessing the data. The Admin has to first enter the PASSWORD
as “admin” .If the password then only you will be successfully
logged in to the dashboard. We have also added some security to
the application.
If the user other than admin tries to log in then, after 2 bad
attempts the software will be blocked for some time.
We’ve displayed the menu of Add new record, Display vaccine
data, Search person ,View all data. If you want to add a
vaccination record the simply press 1, Similarly 2 for View
Vaccine data, 3 for searching a record, and if the admin wants to
see all vaccination data then simply press 4.
In this section, the admin can add a number of records of persons.
While adding a new record the software will ask for the following
information of person:
Address
Mobile Number
Name of the Vaccine you’ve Taken.
After entering the above information the new record will be
successfully added to the database.
Modularity: The source code for an object can be written and maintained
independently of the source code for other objects. Once created, an object
can be easily passed around inside the system.
FUNCTIONS
void gotoxy(int ,int ); Gotoxy function is use to print the
statement at appropriate position on the screen. The parameters
passed to gotoxy() are column number and row number.
Checklist :
C features Used in the comments
project(Y/N)
FILE I/O Y Details about the
functions
Library Y #include<stdio.h>
functions #include<conio.h>
#include<stdlib.h>
#include<windows.h>
#include<string.h>
#include<ctype.h>
CONCLUSION