I was given a scenario: “How would you implement an optimised search field?"
Sigiloso
My answer focused on the architecture and logic using reactive programming with a pattern like: valueChanges → debounceTime → distinctUntilChanged → switchMap → API call.This is a very common and production-ready approach used in modern Angular applications. However, the evaluation seemed to focus heavily on whether I could write the exact syntax from memory