Recall & Review
beginner
What is an inline template in Angular?
An inline template is a small HTML code written directly inside the component's TypeScript file using the
template property.Click to reveal answer
beginner
What is an external template in Angular?
An external template is an HTML file linked to the component using the
templateUrl property, keeping HTML separate from TypeScript code.Click to reveal answer
beginner
Name one advantage of using inline templates.
Inline templates keep the component code in one place, making it easier to see the HTML and TypeScript together for small components.
Click to reveal answer
beginner
Why might you prefer external templates over inline templates?
External templates improve readability and maintainability for larger HTML code by separating it from TypeScript, making the project cleaner.
Click to reveal answer
beginner
How do you define an inline template in an Angular component?
Use the
@Component decorator with the template property, like @Component({ template: `Hello
` }).Click to reveal answer
Which property is used to link an external HTML file in an Angular component?
✗ Incorrect
The
templateUrl property points to an external HTML file for the component's template.What is a benefit of inline templates?
✗ Incorrect
Inline templates keep the HTML code inside the component file, which is handy for small components.
Which is true about external templates?
✗ Incorrect
External templates are stored in separate HTML files and linked with
templateUrl.When should you prefer external templates?
✗ Incorrect
External templates help keep large or complex HTML code organized and easier to maintain.
How do you write an inline template in Angular?
✗ Incorrect
Inline templates use the
template property with HTML code as a string.Explain the difference between inline and external templates in Angular and when you might use each.
Think about where the HTML code lives and how big or complex it is.
You got /5 concepts.
Describe how to define an inline template in an Angular component and why it might be useful.
Focus on the syntax and practical reasons.
You got /3 concepts.