ASP.NET Core Web APIs use the ________ format as a standard for transmitting data.
- JSON
- XML
- Binary
- CSV
ASP.NET Core Web APIs primarily use the JSON (JavaScript Object Notation) format for transmitting data. JSON is lightweight, human-readable, and widely supported, making it a popular choice for APIs.
Loading...
Related Quiz
- Imagine you're working on an e-commerce application using ASP.NET Core MVC. A user wants to view details of a product. Which component of the MVC pattern would be responsible for fetching the product details from the database?
- How can you pass data from a controller to a Razor view?
- How can you configure session timeout for a logged-in user in ASP.NET Core?
- After writing your ASP.NET Core application code, you want to build and run your application using a command-line tool. Which tool would you use for this purpose?
- If you want to enforce that passwords must contain a non-alphanumeric character in ASP.NET Core Identity, which property should you set?