Problem Statement
What is string interpolation and how is it different from property binding?
Explanation
Interpolation `{{ expr }}` outputs text into the DOM (e.g., inside a `<p>`). Property binding `[prop]="expr"` sets a real DOM property (e.g., `[value]`, `[src]`, `[disabled]`). Interpolation is for text nodes; property binding affects element behavior and attributes.