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

Health Care - TutorialsDuniya

The document describes a software engineering project for a health care application. It allows users to search for medical services near their location, book appointments with doctors, and make payments. The project includes requirements, data flow diagrams, an architectural design, and risk analysis. It also provides validation code to check user passwords when logging in.

Uploaded by

Sshahid Basha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
49 views

Health Care - TutorialsDuniya

The document describes a software engineering project for a health care application. It allows users to search for medical services near their location, book appointments with doctors, and make payments. The project includes requirements, data flow diagrams, an architectural design, and risk analysis. It also provides validation code to check user passwords when logging in.

Uploaded by

Sshahid Basha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 22

TUTORIALSDUNIYA.

COM

Health Care

Software Engineering Project

Download FREE Software Engineering Projects for any


university student of BCA, MCA, B.Sc, M.Sc, B.Tech at
https://www.tutorialsduniya.com

If you find any error or mistake in this Software Engineering


project then report at [email protected]

Please Share these SE Projects with your Friends


Download FREE Software Engineering Projects from TutorialsDuniya.com

HealtH Care

SOFtWare eNGINeerING PrOJeCt rePOrt

om
.c
i ya
un
D

SUPerVISOr : TutorialsDuniya.Com
ls

SUBMItteD BY: Sweta Kumari (12345)


ia

Sweta Kumari (12345)


t or

DEPARTMENT OF COMPUTER SCIENCE


Tu

UNIVERSITY OF DELHI

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

ACKNOWLEDGEMENT
Our views on how, why and when various phases
of software development should be executed

om
have changed tremendously (and definitely for
better) and to this end we’d like to mention the

.c
name of our teacher, ‘TuTOriALsDuNiyA.COM’,
who with her patience and excellent knowledge

ya
walked us through this path of learning.

i
un
D
ls

Sweta Kumari
ia

Sweta Kumari
t or
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

INDEX
1.REQUIREMENT DOCUMENT……………………….

om
2.DFD-LEVEL 0 & LEVEL 1………………………………
3.DATA DICTIONARY……………………………………..

.c
4.ARCHITECTURAL DESIGN…………………………..

ya
5.FUNCTION POINT……………………………………….
6.FLOWCHART,CYCLOMATIC COMPLEXITY……
i
un
7.RISK TABLE…………………………………………………
D

8.INTERFACES……………………………………………….
ls
ia
t or
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

REQUIREMENT DOCUMENT
APP NAME: HEALTH CARE

om
Users: people who need to visit for medical facilities in their
location

.c
Healthcare is an app which will provide platform where

ya
people can search for medical care . It also provides
facilities for booking appointment of doctors .

i
un
This app first asks the user to login or signup which will
help them to get notifications about medical services
present in their location. Based on their location , the
D

users can access physicians, dentist , pathlabs and


ls

medical stores. The user can also book appointment


doing payment through debit card. They can also make
ia

changes in appointment schedule i.e. cancel or postpone


or

the appointment according to their preferences.


t
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

CONtext leVel DFD

om
.c
i ya
un
Data Dictionary:
Dictionary:-
D

Login_Details = email + password


ls

Visitor_Details= Name + Phone_no + Address


ia

Details_of_Location = Doctor_service + Path_labs


or

+Medical_stores
t
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

leVel :-1

om
.c
i ya
un
D
ls
ia
t or
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

Data Dictionary:-

Visitor_details = Name + Contact_no

om
+Address
Facility_list = Doctor_service + path_labs

.c
+ Medical_store

ya
Payment_file =visitor_details +Doctor_details
+ Consultation_fee

i
un
Appointment_file = visitor_details + Doctor_details
+Appointment_date
D

Send_acknowledge_for_validation = Yes/No
ls
ia
t or
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

ArChiTECTurE DEsiGN

om
.c
i ya
un
D
ls
ia
t or
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


TutorialsDuniya.com

Download FREE Software Engineering Projects PDF for any


university student of BCA, MCA, B.Sc, B.Tech, M.Sc at
https://www.tutorialsduniya.com

 3 Level Authentication  Airline Reservation System


 Banking Management System  Bus Route Enquiry System
 Car Showroom Dealership  Cricket Management System
 Criminal Record Management  E-Boutique
 Exam & Result Management  Health Care
 Hospital Management System  Online Bookstore
 Online Complaint Portal  Online Event Booking
 Online MetroCard Recharge  Online Missing Person Info
 Online Shopping  Online Shopping System
 Our First Home  Railway Reservation System
 Reality Show Management  Tour & Travel Management
 Smart City Traveller  Weather ForeCasting

Many more FREE Software Engineering Projects are available at


https://www.tutorialsduniya.com

Please Share these SE projects with your Friends as well


Download FREE Software Engineering Projects from TutorialsDuniya.com

rISk taBle
RISK CATEGORY PROBABILITY IMPACT RMMM
Large number of PS 20% 4

om
users than planned

Lack of training on DE 80% 3


tools

.c
Staff inexperienced ST 60% 2

ya
Requirements PS 50% 2
understanding
Difficulty TE
i60% 2
un
integrating work

Planning taking up PS 40% 3


D

too much time, not


enough to work on
ls

product
ia
t or
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

VALIDATION CODE
CHECKING PASSWORD VALIDATION
1. Ifstream fin(“VISITOR_FILE”,ios::binary);

om
2. String id,password; 1
3. Flag=0;
4. gets(id);
5. gets(password);

.c
6. while (fin. read((char*)&e,sizeof(e)) 2
7. {

ya
8. If(id==e.id && password==e.password) 3,4
9. {
10.Flag=1;

i
5
11.Given access to system continue;
un
12.}
6
13.}
14.If(flag==0)
D
7
15.cout<<”access denied”; 8
16.fin.close();
ls

9
17.return;
ia
t or
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

FLOW GrAPh

om
.c
i ya
un
D
ls
ia
t or
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

Cyclometic Complexity:-

Number of regions = E-V+2


= 12-9+3

om
=5
Number of regions = number of predicate nodes +1

.c
= 4+1

ya
=5

i
un
Number of independent paths=5

Independent paths
D

1-2-7-8-9
ls

1-2-7-9
ia

1-2-3-4-5-6-2-7-9
1-2-3-6-2-7-9
or

1-2-3-4-6-2-7-9
t
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

COMPuTiNG FuNCTiONAL POiNT

INFORMATION COUNT WEIGHING

om
DOMAIN FACTOR-SIMPLE
VALUES
External inputs
3 3 9

.c
External outputs
2 4 8
External Inquiries
2 3 6

ya
Internal logical
files
4 7 28
External interface
0 5 0
file
i
un
Count total 51
D
ls
ia
t or
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

S.No.
QUESTIONS MARKS
1 Does the system require reliable backup and
recovery?
5
2 Are specialized data communications required
to transfer information to or from the
5

om
application?
3 Are there distributed processing functions?
0
4 Is performance critical?
5

.c
5 Will the system run in an existing, heavily
utilized operational environment?
4
6 Does the system require online data entry?
5

ya
7 Does the online data entry require the input
transaction to be built over multiple screens or
5
operations?

i
un
8 Are the ILFs updated online?
5
9 Are the inputs, outputs, files, or inquiries
complex?
1
D

10 Is the internal processing complex?


2
11 Is the code designed to be reusable?
2
ls

12 Are conversion and installation included in the


design?
1
ia

13 Is the system designed for multiple installations


in different organizations?
5
or

14 Is the application designed to facilitate change


and ease of use by the user?
5
TOTAL f(i) 50
t
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

FP=count total *(0.65+0.01 * total f(i))


=51 *(0.65+0.01*50)
=51*1.15

om
=58.65 = 59(approx.)

.c
i ya
un
D
ls
ia
t or
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

INterFaCeS

om
.c
i ya
un
D
ls
ia
t or
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

om
.c
i ya
un
D
ls
ia
t or
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

om
.c
i ya
un
D
ls
ia
t or
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


Download FREE Software Engineering Projects from TutorialsDuniya.com

om
.c
i ya
un
D
ls
ia
t or
Tu

Download FREE Software Engineering Projects from TutorialsDuniya.com


TutorialsDuniya.com

Download FREE Software Engineering Projects PDF for any


university student of BCA, MCA, B.Sc, B.Tech, M.Sc at
https://www.tutorialsduniya.com

 3 Level Authentication  Airline Reservation System


 Banking Management System  Bus Route Enquiry System
 Car Showroom Dealership  Cricket Management System
 Criminal Record Management  E-Boutique
 Exam & Result Management  Health Care
 Hospital Management System  Online Bookstore
 Online Complaint Portal  Online Event Booking
 Online MetroCard Recharge  Online Missing Person Info
 Online Shopping  Online Shopping System
 Our First Home  Railway Reservation System
 Reality Show Management  Tour & Travel Management
 Smart City Traveller  Weather ForeCasting

Many more FREE Software Engineering Projects are available at


https://www.tutorialsduniya.com

Please Share these SE projects with your Friends as well

You might also like