Multiple choice A mock is used to Provide stand-in objects for dependencies to isolate tested code. Modify the tested class state at runtime. Assert values to ensure they meet expectations. Fake unit tests so that they pass regardless of code stability. Reveal answer Fill a bubble to check yourself A Correct answer Explanation In unit testing, mock objects simulate the behavior of complex, real dependencies (such as databases or external APIs). This allows developers to isolate the code being tested and verify its behavior independently of external factors.