You're building an application where some static files need to be accessible only for authenticated users. How might you achieve this in an ASP.NET Core application?

  • UseStaticFiles
  • UseAuthentication
  • UseAuthorization
  • UseRouting
To restrict access to static files for authenticated users, you should use the UseAuthorization middleware in combination with proper authorization policies. Configure your policy to allow access to these files only for authenticated users, ensuring that unauthorized users can't access them.

To ensure users do not use easily guessable passwords like "password123," you'd implement the _________ option in ASP.NET Core Identity.

  • Password Complexity
  • Two-Factor Authentication
  • Account Lockout
  • Password Strength
Implementing the "Password Complexity" option in ASP.NET Core Identity helps enforce strong password policies, preventing users from setting easily guessable passwords. It typically includes requirements for length, character types, and complexity to enhance security.

Which of the following files replaced project.json in .NET Core 2.0 and later versions?

  • .csproj
  • .config
  • .jsonproj
  • .xmlproj
The project.json file was replaced by the .csproj file in .NET Core 2.0 and later versions. .csproj files use XML to define project structure and dependencies, replacing the simpler JSON-based project.json format.

In attribute routing, the [Route("products/{id}", Order = 2)] attribute will prioritize this route ______ other routes with no order specified.

  • over
  • above
  • before
  • instead of
In attribute routing, when specifying the 'Order' property, a lower value indicates a higher priority. So, the route with 'Order = 2' will prioritize this route above other routes with no order specified. This allows you to control the order in which routes are matched and executed.

You're coding in Visual Studio Code, and you wish to add C# specific features. What would you typically add to enhance your coding experience in this editor?

  • Visual Studio IDE
  • Visual Studio Code Extensions
  • Visual Studio Toolkit
  • Visual Studio for C#
To enhance your coding experience in Visual Studio Code for C# development, you would typically add Visual Studio Code Extensions. These extensions provide features like IntelliSense, debugging support, code navigation, and more specific to C# development within the lightweight Visual Studio Code editor.

The .NET SDK includes tools that allow developers to produce _________ assemblies, which are a form of compiled code.

  • Dynamic
  • Native
  • Managed
  • Portable
The .NET SDK includes tools for producing Managed assemblies. Managed assemblies contain Intermediate Language (IL) code and metadata that the Common Language Runtime (CLR) can execute. These assemblies are not directly compiled to machine code but are Just-In-Time (JIT) compiled at runtime by the CLR, allowing for platform-independent execution.

Which default folder in an ASP.NET Core web application is used to store and serve static files like CSS, JavaScript, and images?

  • wwwroot
  • Views
  • Controllers
  • Models
The default folder for storing and serving static files in an ASP.NET Core web application is the 'wwwroot' folder. Files placed in this directory can be directly accessed by clients, making it an ideal location for assets like CSS, JavaScript, and images.

In a scenario where you want to optimize the response time of your web application, you decide to implement caching. Which middleware in ASP.NET Core can assist in this task?

  • UseResponseCaching middleware
  • UseMemoryCache middleware
  • UseDistributedCache middleware
  • UseStaticFiles middleware
To optimize the response time of a web application through caching in ASP.NET Core, you would typically use the UseResponseCaching middleware. This middleware enables caching of HTTP responses, allowing you to store and serve previously generated responses for improved performance. The other middleware options listed are used for different purposes, such as in-memory caching, distributed caching, or serving static files.

Razor views support ________, which allows for logic to be embedded directly within the HTML.

  • Razor Pages
  • Tag Helpers
  • C# Code Blocks
  • CSS Styling
Razor views support C# Code Blocks, which allow developers to embed server-side logic directly within the HTML markup. This is a powerful feature of Razor that enables dynamic content generation.

In which directory of an ASP.NET Core MVC application would you find the Razor view files?

  • Models
  • Controllers
  • Views
  • Data
In an ASP.NET Core MVC application, the Razor view files are typically located in the "Views" directory. These view files use the Razor syntax to define the HTML structure of the application's user interface. Views are responsible for rendering data provided by controllers to create the final web page that users interact with.