The Parasol Insurance Group sells a variety of insurance policy types. Design a flowchart for a program that accepts a client’s name and “Y’ or “N’ string answers to questions about whether the client wants each of the following policy types: homeowners ($800 annually), renters ($300 annually), and automobile ($1000 annually per car). If the client wants automobile insurance, add a question to determine the number of vehicles covered. Display all the details, as well as the client’s annual bill. a. Modify the insurance program to display a client’s data only if the client selects automobile insurance. b. Modify the Insurance program to display a clients data only if the client will pay more than $1200 annually

need some help?

Sure, I can help you design a flowchart for the program. Here's a step-by-step breakdown of the flowchart:

1. Start the program.
2. Prompt the user to enter the client's name.
3. Prompt the user to answer whether they want homeowners insurance (Y/N).
4. If the user answers 'Y', go to step 5.
If the user answers 'N', skip step 5.
5. Store homeowners insurance as selected.
6. Prompt the user to answer whether they want renters insurance (Y/N).
7. If the user answers 'Y', go to step 8.
If the user answers 'N', skip step 8.
8. Store renters insurance as selected.
9. Prompt the user to answer whether they want automobile insurance (Y/N).
10. If the user answers 'Y', go to step 11.
If the user answers 'N', go to step 14.
11. Store automobile insurance as selected.
12. Prompt the user to enter the number of vehicles covered.
13. Store the number of vehicles covered.
14. Calculate the annual bill based on the selected insurance types:
- Homeowners: $800
- Renters: $300
- Automobile: $1000 per car (multiplied by the number of vehicles covered)
Add up the costs of selected insurance types.
15. If the total annual bill is greater than $1200, go to step 16.
If the total annual bill is less than or equal to $1200, go to step 18.
16. Display the client's name and selected insurance types.
17. Display the client's total annual bill.
18. End the program.

Please note that this is a textual representation of the flowchart. To create an actual flowchart, you can use flowchart software or draw the shapes and arrows on paper.

Sure, I can help you create a flowchart for that program. Here's a step-by-step guide to design the flowchart:

1. Start: Begin the program.

2. Accept client's name: Prompt the user to enter the client's name and store it in a variable.

3. Accept policy types: Ask the user whether the client wants each of the policy types - homeowners, renters, and automobile. Accept their response as "Y" for yes or "N" for no for each policy type. Store the responses in separate variables.

4. Check for automobile insurance: Check if the client wants automobile insurance (the variable for automobile insurance is "Y").

5. If the client wants automobile insurance (Y) - Continue the flowchart from this point.
5.1. Ask for the number of vehicles covered: Prompt the user to enter the number of vehicles covered by the insurance and store the value in a variable.
5.2. Calculate annual bill: Multiply the number of vehicles by the insurance cost per car ($1000) and store the result in a variable.
5.3. Display client's details and annual bill: Display the client's name, policy types they want, the number of vehicles covered, and the annual bill.
5.4. End: End the program.

6. If the client doesn't want automobile insurance (N) - End the program.

7. Check if the total annual bill is above $1200:
7.1. Sum up the annual costs of homeowners, renters, and automobile insurance (if applicable). Store the total annual bill in a separate variable.
7.2. Check if the total annual bill is greater than $1200.
7.3. If the total annual bill is greater than $1200, display the client's details and annual bill. Otherwise, end the program.

8. End: End the program.

Note that this flowchart assumes a linear execution of the program without any loops or conditions other than those explicitly mentioned. You can add more complex logic if needed, based on your specific requirements.

I hope this helps! Let me know if you have any further questions.