Which of the following is NOT a default template option when creating a new ASP.NET Core project?
- Web API, Razor Pages, Windows Forms, Angular
- Empty, Web API, Web Application, Blazor
- Class Library, Console Application, Unit Test Project, Worker Service
- None of the above
When creating a new ASP.NET Core project, "Windows Forms" is not a default template option. ASP.NET Core primarily focuses on web-based and cloud-based applications, so options like Web API, Razor Pages, and Blazor are more common project types.
Loading...
Related Quiz
- Dependency injection in ASP.NET Core MVC allows services to be injected into controllers via their _________.
- When securing your ASP.NET Core Web APIs, which authentication approach uses a compact, URL-safe means of representing claims to be transferred between two parties?
- If you wish to apply a unique constraint on a column using the Fluent API in Entity Framework Core, which method should you use inside OnModelCreating?
- What is the role of the "wwwroot" directory in an ASP.NET Core project?
- If you were to create a page in an ASP.NET Core MVC application that displays a list of movies, which component would be responsible for determining how this list is presented to the user?