Templates
The template is HTML plus Angular extras: {{ }}, *ngIf, *ngFor, (click), [class]. It should stay readable. Heavy if/else belongs in the class, not in a 20-line {{ }} expression.
Meera prints {{ s.name }} and *ngIf="s.marks >= 40". That’s a template. Trap: calling a heavy method in {{ getTotal() }} every change-detection cycle — it runs too often. Use a pipe or a field.
Exam tip
{{ }} + *ngIf + (click). No fat expressions.