[solved]-Question 5 20 Assignment Game Locker Puzzle School 100 Lockers 100 Students Lockers Closed Q39003815
Question 5 (20% of this assignment):
(Game: locker puzzle) A school has 100 lockers and 100 students.All lockers are closed on the first day of school. As the studentsenter, the first student, denoted S1, opens every locker. Then thesecond student, S2, begins with the second locker, denoted L2, andcloses every other locker. Student S3 begins with the third lockerand changes every third locker (closes it if it was open, and opensit if it was closed). Student S4 begins with locker L4 and changesevery fourth locker. Student S5 starts with L5 and changes everyfifth locker, and so on, until student S100 changes L100.
After all the students have passed through the building andchanged the lockers, which lockers are open? Write a program tofind your answer.
(Hint: Use a list of 100 Boolean elements, each of whichindicates whether a locker is open (True) or closed (False).Initially, all lockers are closed.)

python 3.7 please
Question 5 (20% of this assignment): (Game:locker puzzle) A school has 100 lockers and 100 students. All lockers are closed on the first day of school. As the students enter, the first student, denoted S1, opens every locker. Then the second student, S2, begins with the second locker, denoted L2, and closes every other locker. Student S3 begins with the third locker and changes every third locker (closes it if it was open, and opens it if it was closed). Student S4 begins with locker L4 and changes every fourth locker. Student S5 starts with L5 and changes every fifth locker, and so on, until student S100 changes L100. After all the students have passed through the building and changed the lockers, which lockers are open? Write a program to find your answer. (Hint: Use a list of 100 Boolean elements, each of which indicates whether a locker is open (True) or closed (False). Initially, all lockers are closed.) Show transcribed image text Question 5 (20% of this assignment): (Game:locker puzzle) A school has 100 lockers and 100 students. All lockers are closed on the first day of school. As the students enter, the first student, denoted S1, opens every locker. Then the second student, S2, begins with the second locker, denoted L2, and closes every other locker. Student S3 begins with the third locker and changes every third locker (closes it if it was open, and opens it if it was closed). Student S4 begins with locker L4 and changes every fourth locker. Student S5 starts with L5 and changes every fifth locker, and so on, until student S100 changes L100. After all the students have passed through the building and changed the lockers, which lockers are open? Write a program to find your answer. (Hint: Use a list of 100 Boolean elements, each of which indicates whether a locker is open (True) or closed (False). Initially, all lockers are closed.)
Expert Answer
Answer to Question 5 (20% of this assignment): (Game: locker puzzle) A school has 100 lockers and 100 students. All lockers are cl… . . .
OR

