Classify the statements about expression interpolation in JavaScript strings. Select all that apply.
A template placeholder evaluates its expression✓Correct answer
An ordinary quoted string interpolates the same way
The expression result is converted to text✓Correct answer
Interpolation inserts source code without evaluation
Explanation
A template placeholder evaluates its contained expression and converts the resulting value to text for insertion. The same marker-like characters inside an ordinary quoted string remain literal text, so quoted strings do not gain interpolation behavior.