(Get Answer) – Cis242 homework | Computer Science homework helpWrite the code for each lab assignment.Submit the lab in a single zip file in the online course shell. The lab must contain all .cpp files, along with any additional files that may be necessary for your project to run (ex: text files).Enter any and all written answers into the online course shell along with the submission of the attached lab assignment.Please submit each lab assignment with only two files for grading.a .cpp file of your C++ program design (source code)a .docx file of its program’s successful execution output in Word format. Each lab assignment will be graded based on the following: 1. The program must compile, execute, produce correct results, and meet all of the specifications in the weekly lab.Additionally you must: 2. Organize the code for user readability.3. Organize the code for reusability.4. Provide documentation with embedded comments for reader understanding.5. Organize the code for efficiency. Homework 1: During each summer, John and Jessica grow vegetables in their backyard and buy seeds and fertilizer from a local nursery. The nursery carries different types of vegetable fertilizers in various bag sizes. When buying a particular fertilizer, they want to know the price of the fertilizer per pound and the cost of fertilizing per square foot. The following program prompts the user to enter the size of the fertilizer bag, in pounds, the cost of the bag, and the area, in square feet, that can be covered by the bag. The program should output the desired result. However, the program contains logic errors. Find and correct the logic errors so that the program works properly. //Logic errors.#include