JWT or JSON Web Tokens are often used in conjunction with the _________ authentication scheme in ASP.NET Core.

  • Bearer
  • Digest
  • OAuth
  • Windows
JWT or JSON Web Tokens are often used in conjunction with the Bearer authentication scheme in ASP.NET Core. The Bearer scheme is commonly used to secure APIs and web applications, where a client includes a JWT token in the HTTP Authorization header to authenticate and authorize their requests. This scheme is based on the bearer token concept, where possession of the token is sufficient for authentication.

You are working on an ASP.NET Core web API project, and you realize that direct database operations can expose sensitive information in the error messages to the clients. How can you ensure that Entity Framework Core doesn't throw detailed database errors to the client?

  • Use Exception Filters
  • Configure Error Pages
  • Enable Developer Exception Page
  • Use Exception Handling Middleware
To ensure that Entity Framework Core doesn't throw detailed database errors to the client, you should use "Exception Handling Middleware." This middleware intercepts exceptions, handles them, and returns a user-friendly error response to the client without exposing sensitive database details.

The _________ method can be used to refresh sign-in information of a user in scenarios like role update.

  • RefreshSignInAsync
  • UpdateUserSignIn
  • RenewSignInToken
  • ValidateSignIn
The RefreshSignInAsync method can be used to refresh the sign-in information of a user in scenarios like role updates or other security-sensitive operations. This method generates a new security token for the user, helping to prevent token-based attacks and ensuring the user's session remains secure.

Unlike the traditional ASP.NET which relied on System.Web.dll, ASP.NET Core operates on a set of granular and modular _________ packages.

  • NuGet
  • .NET Framework
  • GAC
  • Windows Registry
ASP.NET Core utilizes NuGet packages for its dependencies, unlike the monolithic System.Web.dll used in traditional ASP.NET. NuGet packages allow for a more modular and granular approach to including libraries, reducing the size of your application and making it more efficient.

You are building a multi-lingual website and want to capture the language as part of the URL (e.g., /en-US/Home, /fr-FR/Home). How can you configure routing to capture the language segment?

  • Use route parameters like {language}/Home
  • Use query parameters like ?lang=en-US
  • Use HTTP headers to capture the language
  • Use cookies to store the language
To capture the language segment as part of the URL, you can use route parameters like {language} in your route templates. For example, the route template "{language}/Home" will capture the language segment from URLs like /en-US/Home and /fr-FR/Home.

You are tasked with building a cross-platform web application that can run on both Windows and Linux servers. Which version of ASP.NET would be most suitable for this requirement?

  • ASP.NET Core
  • ASP.NET Framework
  • ASP.NET MVC
  • ASP.NET Web Forms
For building cross-platform web applications that can run on both Windows and Linux servers, ASP.NET Core is the ideal choice. Unlike ASP.NET Framework, ASP.NET Core is designed to be cross-platform, lightweight, and high-performance, making it suitable for modern, cloud-native applications.

To display validation errors on the registration view, one can use the _________ tag helper.

  • ValidationSummary
  • ValidationMessage
  • ModelValidation
  • InputValidation
To display validation errors on an ASP.NET Core registration view, you can use the ValidationMessage tag helper. It's used to show error messages associated with model validation errors and provides a user-friendly way to communicate validation issues to users during the registration process.

How can you use a layout page in Razor to define a consistent page structure across views?

  • Using the @layout directive
  • Using the Layout property in the Razor view
  • By specifying the layout in the web.config file
  • By using a C# method in the view
In Razor, you use the @layout directive followed by the path to the layout file to define a consistent page structure across views. This allows you to create a shared layout that can be used for multiple views, ensuring a consistent look and feel for your application.

For an ASP.NET Core MVC application to handle requests, it must be configured using the _________ middleware.

  • Routing
  • Authentication
  • Authorization
  • Logging
For an ASP.NET Core MVC application to handle incoming HTTP requests and direct them to the appropriate controllers and actions, it must be configured to use the "Routing" middleware. Routing middleware determines how URLs are matched to controller actions, making it a critical part of request handling in MVC applications.

What is the primary purpose of serving static files in a web application?

  • Improve Performance
  • Enhance Security
  • Handle User Authentication
  • Manage Database Connections
Serving static files in a web application primarily aims to improve performance. By serving assets like CSS and JavaScript directly to the client's browser, it reduces the server's load and enhances the website's loading speed. This results in a better user experience and improved website performance.

How can you extend the default IdentityUser class to store additional information about the user during the registration process in ASP.NET Core?

  • Inherit from IdentityUser and add properties
  • Use a custom database table
  • Create a separate class for user details
  • Use Entity Framework Core Migrations
You can extend the default IdentityUser class by creating a new class that inherits from it and adding the desired properties. This allows you to store additional information about the user in the same database table as the IdentityUser, providing a seamless integration with ASP.NET Core Identity.

Which IDE is commonly used by developers for building ASP.NET Core applications?

  • Visual Studio
  • Eclipse
  • Sublime Text
  • Notepad
Visual Studio is one of the most commonly used Integrated Development Environments (IDEs) by ASP.NET Core developers. It provides a robust set of tools and features for creating, testing, and deploying ASP.NET Core applications, making it a popular choice in the developer community.