Angular Quiz
Test your Angular knowledge with 10 questions — multiple-choice and practical — with instant feedback and a final score.
Introduction
This is a 10-question check on the Angular tutorial. Mix of multiple-choice and short practical prompts. Hit Check answer on each question to see instant feedback and an explanation, then Finish quiz for your final score.
Quiz
Angular knowledge check
10 questions · answer each one and get instant feedback.
1What does [value]="name" do in an Angular template?
2Which of these correctly creates a two-way binding on an input?
3When does ngOnInit fire compared with the constructor?
4What does providedIn: 'root' mean on an @Injectable service?
5Which directive renders a list of items in modern Angular control flow?
6What is a signal in Angular?
const count = signal(0);count.set(1);count.update(c => c + 1);
7Which file is the entry point that bootstraps a standalone Angular app?
8Convert this old syntax to the new control flow: *ngIf="loading"
Hint: we look for key terms in your answer.
9How do you scope a service so it only exists for one component (and its children)?
Hint: we look for key terms in your answer.
10What pipe converts an Observable to its latest value in the template (and unsubscribes automatically)?
Hint: we look for key terms in your answer.