Problem Statement
Compare string interpolation and property binding.
Explanation
Both are one-way from component to view. Interpolation `{{value}}` converts the result to a string and sets text content or attribute values. Property binding `[prop]="value"` sets a real DOM property. Use property binding when you set non-string values or complex properties (e.g., `[disabled]`, `[value]`, `[src]`).