Concept Flow - Default change detection strategy
Event triggers (click, async, etc.)
Angular runs change detection
Traverse component tree
Check each component's bindings
Update DOM if data changed
Finish change detection cycle
Angular's default change detection runs on every event and checks all components for data changes, updating the DOM accordingly.