New Century Wellness Group offers a holistic approach to healthcare with an emph
ID: 3807290 • Letter: N
Question
New Century Wellness Group offers a holistic approach to healthcare with an emphasis on preventive medicine as well as traditional medical care. In your role as an IT consultant, you will help New Century develop a new information system. Based on your presentation to New Century's partners, they decided to move forward with in-house development of a new business support system. They liked the idea of a vertical software package, but they want to be able to customize the user interface because New Century's business functions are more varied. However, it is very important that the new system allow future integration with vertical packages such as electronic health records, computerized provider order entry, and a clinical decision support system. Using the information you gained in the systems planning and analysis phases of the SDLC, you sit down to begin designing the user interface of the New Century's business support system. Before you begin, you decide to review the case studies, DFDs, and object-oriented diagrams you prepared in Chapters 5 and 6. Determine the data required for a new patient. Design an input source document that will be used to capture the patient's data and a data entry screen to enter the information into the system.Explanation / Answer
Input Source Documents are used to display a document using a computer program. For example: HTML is one of the input source document which is used for viewing using a web browser.
I have created a small HTML code that can be used as an input source document and serves as a data entry screen to enter patient's data. See the HTML code below:
<HTML>
<body>
<h1><center>New Century Wellness Group</h1> <!Type of Heading>
<h2><center>Enter Patient Records</h2> <!Type of Heading>
<form id='samplesource' method='post' action=''>
<p> <! Used for create a Paragraph Break>
<center>Name: <input type='text' name='Patient's Name' /> <!To enter pateints first and last name>
</p>
<p>
<center>Age: <input type='text' name='Age' />
</p>
<p>
<center>Gender: <input type='text' name='Sex' />
</p>
<p>
<center>Phone Number: <input type='text' name='Phone Number' />
</p>
<p>
<center><input type="button" value="Print" /> <!Code to create the print button>
</p>
</form>
</body>
</html>
Open a notepad, paste the code in notepad and save the file as name.html. Open the file by going to file destination and clicking on it.
The code will be used to enter Patient's name, Age, gender, phone number.
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.