Problem Statement
List the data binding types in Angular with a quick example each.
Explanation
Interpolation: `{{title}}` (component ➜ view). Property binding: `[disabled]="isBusy"`. Event binding: `(click)="save()"` (view ➜ component). Two-way: `[(ngModel)]="form.name"` (both ways). These make templates declarative and keep logic in the component.