In ASP.NET Core, how are models represented?
1. In ASP.NET Core, how are models represented?
They are represented as .NET class files |
||
They are represented as .NET Interfaces |
||
They are represented as super classes of Object |
||
They are represented as Collection classes |
2. ____________ is / are a collection of worker threads, managed by the system, that efficiently execute parallel code on behalf of the application.
It is /They are primarily used to reduce the number of application threads and provide management of the worker threads.
Race conditions |
||
Deadlocks |
||
Thread pool |
||
Thread-safe code |
3.
What is a primary difference between a Web service and a Web client?
The web client relies on HTML being returned for the browser to render the view where the Web service sends only raw data back to a client, requiring client-side processing for data parsing and display |
||
The web service relies on HTML being returned for the browser to render the view where the We client sends only raw data back to a client, requiring client-side processing for data parsing and display |
||
There is no difference, they are the same concept |
||
A Web client MUST have a web service to access before it can render HTML results. |
4.
What are Razor expressions used for?
They are evaluated when the view is rendered and replaced with the result that will be displayed in the View |
||
They are prefixed with the & symbol and extract data from the URL query string |
||
They are syntax expressions that extract data from a |
||
They are prefixed with a # symbol and used to display data in the View |
Step by step
Solved in 2 steps