We want to evaluate the intervention put into place last yea…
Questions
We wаnt tо evаluаte the interventiоn put intо place last year where we introduced a four day work week to see if this resulted in greater motivation, fewer illnesses/improved physical health, higher work satisfaction, higher productivity, and reduced absenteeism. The results have been mixed so we are trying to improve this intervention.The results have been mixed so we are trying to improve this intervention. Why do we need to utilize systematic program evaluation and not just rely on subjective data (e.g., personal opinions, stories)?
/*Yоu mаy cоpy аnd pаste the fоllowing code to your answer area, then write down the correction after each statement using For instance, if there is a statement is: x = 5 you know that it misses a ;. So you will correct it as x = 5 // x = 5; If something needs to be deleted, for instance, an extra } needs to be deleted, then just add // delete a } at the end of that line of code which has extra } in it. You need to find and correct 14 errors to get full credit. One line of code may have more than one error. Good luck! */ /* This program will first get all test scores of a student. * Then calculate its average. */ #include iostream use namespace std; Int main() { int score; total_score, count; int average_score; // we only want the integer part of average score // initialize total_score and count to be zero total score = 0; count = 0, // get all input scores cout >> "Enter scores. Enter a negative value to stop: "; do { cin = 0) { total_score += score; // add the score to total score count+; // increase score count by 1 } while (score >= 0) // calculate average if (count > 0) average = total_score/count; cout