Froggy Jumps SincronizaciónVersion en ligne In this game you must choose the correct answer so that the frog can advance, if you choose the wrong one it will fall into the water and you will have to start again par TANIA STEPHANIE LEAL PIÑA 1 What is synchronization? a A type of configuration that allows two devices or programs to work together. b How threads interact with each other. c Multithreaded programming 2 Which mechanism is commonly used for thread synchronization? a Thread pool. b Mutex. c Semaphore. 3 What does a semaphore control? a Access to a resource. b Thread priority. c CPU time. 4 The purpose of a mutex is ... a Provide a mechanism so that only one thread can access an object at a given time. b It is because threads work with a shared resource. c Scheduling threads to allocate time. 5 What happens if an object's mutex is held by one thread? a The remaining threads will be forced to wait. b Other threads will not be able to access the object. c Write everything to the console.