Which internal web server is associated with ASP.NET Core by default?
- Kestrel
- IIS Express
- Apache
- Nginx
ASP.NET Core is designed to be platform-agnostic and cross-platform. Kestrel is the default, lightweight, and cross-platform web server that comes bundled with ASP.NET Core. While other web servers like IIS, Apache, or Nginx can be used in combination with ASP.NET Core, Kestrel is the default choice for most applications.
Loading...
Related Quiz
- Configuration data in ASP.NET Core can come from various sources like environment variables, command-line arguments, and __________.
- One of the features of ASP.NET Core is its ability to run on _________ platforms.
- In Razor forms, the _______ tag helper can be used to generate hidden input fields.
- For a scenario where you want to return different types of responses (e.g., JSON or HTML) based on some conditions, which action result provides the flexibility to achieve this?
- What is the primary purpose of the DbContext class in Entity Framework Core?