Chocolate Delights Candy Company manufactures several types of candy.

Design a flowchart using Visual Logic for the following:
A program that accepts a candy name (for example, “ chocolate-covered blueberries”), price per pound, and number of pounds sold in the average month, and displays the item’s data only if it is a best-selling item. Best-selling items are those that sell more than 2,000 pounds per month.
A program that accepts candy data continuously until a sentinel value is entered and displays a list of high-priced, best-selling items. High-priced items are those that sell for $10 per pound or more.
Identify outcomes in Visual Logic the lowest-selling items (those that sell 200 pounds or less). This way, owners can decide if they want to put those items on sale, lower their price, discontinue the item, etc.
Identify outcomes in Visual Logic the items that generate the most income. In other words, multiply the price per pound times the number of pounds sold per month, and list items that generate $6,000 or more per month.
Note: The Visual Logic program that you create must be fully functional in order for you to get full credit. If you want to include a short write-up to explain your logic further, you may do so in order to receive additional credit. The specific course learning outcomes associated with this assignment are:
Demonstrate the use of algorithms and pseudocoding to the problem-solving process.
Distinguish among the basic types, steps, and properties of programming.
Apply the techniques of functional decomposition, modularization techniques, and debugging strategies into program design.
Describe the features and fundamental data structures of programming design.
Select and create the appropriate conditional and iteration constructs for a given programming task.
Use technology and information resources to research issues in computer programming design.
Write clearly and concisely about computer programming design topics using proper writing mechanics and technical style conventions.

To design a flowchart using Visual Logic for the given requirements, follow these steps:

Start with the "Candy Data Entry" process:
1. Create an input box to accept the candy name.
2. Create an input box to accept the price per pound.
3. Create an input box to accept the number of pounds sold in the average month.

Next, create a decision-making process to check if the candy is a best-selling item:
4. Create a condition to check if the number of pounds sold per month is greater than 2,000 pounds.
5. If the condition is true, display the candy's data.

For the continuous input of candy data, create a loop using a sentinel value:
6. Create a loop that continues until a sentinel value (e.g., "exit") is entered.
7. Inside the loop, repeat steps 1-5 for each candy data entry.
8. Store the candy data in memory or a data structure (e.g., an array).

For identifying the high-priced, best-selling items:
9. Create a new process to display a list of high-priced, best-selling items.
10. Iterate over the stored candy data.
11. Check if the price per pound is $10 or more and the number of pounds sold per month is greater than 2,000 pounds.
12. If the condition is true, display the candy's data.

To identify the lowest-selling items:
13. Create a new process to display a list of the lowest-selling items.
14. Iterate over the stored candy data.
15. Check if the number of pounds sold per month is 200 pounds or less.
16. If the condition is true, display the candy's data.

To identify the items that generate the most income:
17. Create a new process to display a list of items that generate the most income.
18. Iterate over the stored candy data.
19. Calculate the income for each candy (price per pound multiplied by the number of pounds sold per month).
20. Check if the income is $6,000 or more.
21. If the condition is true, display the candy's data.

Add appropriate connectors and labels to indicate the flow of the program.

Remember to test the flowchart to ensure it handles different scenarios correctly.

This flowchart represents the logic for the given requirements. You can use Visual Logic software to create the flowchart and implement the functionality.