Answer
The rendering pipeline steps:
- Change detection runs to identify data changes.
- Angular updates DOM nodes via compiled instructions.
- Directive inputs + lifecycle hooks run.
- Browser recalculates styles and layout.
- Paint + render occurs.
Angular optimizes minimal DOM updates for performance.