Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

DO PART A AND B OR DON\'T DO THIS QUESTION AT ALL. I NEED THIS WHOLE PROMPT ANSW

ID: 3598691 • Letter: D

Question

DO PART A AND B OR DON'T DO THIS QUESTION AT ALL. I NEED THIS WHOLE PROMPT ANSWERED.

If you are going to hand write; please make it neat and readable.

1.   Data flow diagrams.

a. Draw the following part of a level 0 DFD: a process called Calculate Premium takes in the data flow Customer History and produces Premium Quote, which is stored in a data store called Quotes.

b. Create a level 0 (diagram 0) Data Flow Diagram for the following narrative.   

The purpose of the Johnson Insurance System is to provide insurance for home owners. Initially, a home owner is required to fill out an application request. When the application request is received, the application data is entered into a customer database. After that the following steps are taken:

1.A credit check request on the homeowner is sent to a credit bureau, which sends back a credit report. The credit report attached to the home owner’s application.

2.A property ownership verification request is sent to the local county court house, which sends back a property verification report. This report is also attached to the home owner’s application.

3.An agent reviews the complete application and makes a decision regarding approval or rejection.

4.The home owner is notified regarding their approval or rejection for an insurance policy.

Explanation / Answer

package com;
public class ArraySortedPolynomial implements PolynomialInterface

{

ArraySortedPolynomial()

{

}

ArraySortedPolynomial(String pol)

{

}

@Override

public PolynomialInterface add(PolynomialInterface other) {

// TODO Auto-generated method stub

return null;

}

@Override

public PolynomialInterface subtract(PolynomialInterface other) {

// TODO Auto-generated method stub

return null;

}

}