It replaces real objects with mocks. Frame the concept in practical terms so you can explain it during interview discussion.
Mockito helps isolate the unit under test by replacing real objects with mocks, ensuring tests focus on the method's logic rather than its dependencies. In an e-commerce app, mocking a `PaymentService` when testing `checkout()` ensures the test only verifies `checkout()` logic.