0% found this document useful (0 votes)
2 views

SDF Project Synopsis(Rayansh)

The document outlines a project synopsis for a Hospital Patient Details System aimed at improving hospital billing and patient management. The system seeks to reduce paperwork, enhance data storage and retrieval, and increase operational efficiency by providing a user-friendly interface for managing patient information and billing. Key programming concepts such as variables, conditional operators, loops, and dynamic memory allocation are utilized to develop the software.

Uploaded by

Shubhang
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

SDF Project Synopsis(Rayansh)

The document outlines a project synopsis for a Hospital Patient Details System aimed at improving hospital billing and patient management. The system seeks to reduce paperwork, enhance data storage and retrieval, and increase operational efficiency by providing a user-friendly interface for managing patient information and billing. Key programming concepts such as variables, conditional operators, loops, and dynamic memory allocation are utilized to develop the software.

Uploaded by

Shubhang
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

Software Development Fundamentals-I:

(15B11CI111)
Project Based Learning

B.Tech Ist Year, Odd Semester 2024-25

PROJECT SYNOPSIS
Topic: Hospital Patient Details System

Batch:A-15 Submitted by:


Rayansh Gupta: 2401180002
Arnava Vashishtha: 2401180017
Anish Dutta: 2401180024
Saarang Khanna: 2401180022
OBJECTIVE

In this program we manage a hospital billing system that


organizes the billing process, including pharmacy bills, and
maintains precise records of patient details, transactions, etc.
The objectives of this system are:
❖To reduce unnecessary paperwork
❖Storage and retrieval of patient data
❖Efficient management of bills and patient info.
❖Increased operational efficiency

The system will allow hospital staff to enter patient details,


treatment costs, pharmacy costs & generate bills, and store
records for the same.
MODIFICATION AND IMPROVEMENT OVER
THE PREVIOUS STATE

Before implementing the project:


❖No software to organize the details in a proper manner
❖Excess time consumed in storing and accessing data
❖Excess paperwork overload
❖No proper bill records
❖Difficulty in managing patient sickness and treatment
details

After implementing the project:


❖User friendly interface
❖Reduced time delay in accessing data
❖Efficient and remotely accessible digital storage
❖Now bills can be made by fast calculations and can be
stored with their respective dates
❖Now patient’s illness details along with medical history can
be stored easily to give treatments accordingly
SCOPE OF PROJECT

1. Patient Management:
● Store and access patient information such as
name, age, gender, and contact details.
● Track admission details, doctor assigned,etc.

2. Billing system:
● Generate bills based on stay duration and patient
treatment.
● Calculation of costs for the services such as
consultations, tests, surgery, room charges, etc.

3. Pharmacy records
● Keep track of medication provided to patients.
KEY CONCEPTS USED

Concepts of C-Programming required:


● Variables and data types: Used to store patient details(age,
bills amount, medicines) and defining the types of variables
such as int, float, char, etc.
● Conditional operators: To check the eligibility of various
services according to patient’s history, insurance claims,etc
● Loops: To repeat tasks until certain condition/s is met, such
as iterating through patients to calculate their fees.
● Arrays and strings: Arrays are used to store multiple values
of same same type in a single variable such as Cost of
medicines. Strings will be used to store texts such as
names.
● Functions: To calculate charges of services such as tests,
treatments. Functions will make the program efficient and
enable various tasks to be reusable.
● Pointers: To store the address of various variables and
easily access them.
● Dynamic memory allocation: Allows flexibility in storing
and reallocating data. For eg: This is useful when a patient
is admitted or discharged as it can reuse the same block of
memory.

You might also like