You’ve noticed in your company that engineers find bugs but forget… You’ve noticed in your company that engineers find bugs but forget to

You’ve noticed in your company that engineers find bugs but forget… You’ve noticed in your company that engineers find bugs but forget to fix them. In your report: 1. Describe what a defect life cycle is and how it provides value to the company. 2.  flowchart with the following life cycle states New -> Assigned -> In Progress -> Completed -> Closed New -> Assigned -> Won’t Fix -> Closed 3. Describe each state and when a defect should enter and leave the state. Enforce a rule that all algorithms will be provided in flowchart and pseudocode form. In your report: 1. Inform the reader of this rule. 2. Describe how providing both a flowchart and pseudocode version of an algorithm will increase the quality of the software. 3. Provide an example by converting the flowchart from the hospital project into pseudocode – your flowchart should contain no bugs or errors. Image transcription textStart Alert Government of Activate emergency Backup Powa Deactivate When main power is Backup powerInactive due to a power boolean is_main_power_active outage, activate backup power until main power booleanis_backup_power_active has been restored. number backup_power_level backup power is active a… Show more… Show moreThe code has been provided on the following page0: Start 1: // If heart rate is 150 or above: alert staff as the patient may have tachycardia. 2: // If heart rate is below 60 or below: alert staff as the patient may have bradycardia. 2: GET heart_rate_of_patient 4: IF heart_rate_of_patient > 150 5: PROMPT “Alert: Patient may be experiencing tachycardia as heart rate is 150 or greater!” 6: IF heart_rate_of_patient <= 60 7: PROMPT "Alert: Patient may be experiencing tachycardia as heart rate is 60 or lower!" 8: Stop For C++ #include  int get_blood_pressure() { // This would be hooked up to a blood pressure tester. For now return a test value. return 120; } int main() { // If blood pressure is 90 or below, alert staff as patient may have hypotension. // If blood pressure is 140 or above, alert staff as patient may have hypertension. int blood_pressure = get_blood_pressure(); if(blood_pressure > 90) { std::cout << "Alert: Patient's blood pressure is 90 or below!" << std::endl; } else if(blood_pressure <= 140) { std::cout << "Alert: Patient's blood pressure is 140 or above!" << std::endl; } }  Math Logic VTGRF ERF Share QuestionEmailCopy link