Asp_dotnet_core_Quiz.md - brainchildservices/curriculum GitHub Wiki

  1. The host for ASP.NET Core web application is configured in _________ file? A. Program.cs B. Startup.cs C. Middleware D. None of the above Ans: B

  2. The .NET SDK is a --------- and tool that allow developers to create .NET applications and libraries.

    Ans: set of libraries

  3. What does SDK stand for?

    Ans: software development kits

  4. The host for ASP.NET Core web application is configured in _________ file?

    A. Program.cs

    B. Startup.cs

    C. Middleware

    D. None of the above

    Ans: A

  5. Which of the following is an entry point of the ASP.NET Core application?

    A. Main method of Program class

    B. Configure method of Startup class

    C. ConfigureService method of Startup class

    D. Application_start method of Global.asax

    Ans: A

  6. command creates a new web app.

    Ans: dotnet new webapp -o aspnetcoreapp

  7. The “UI” in UI design stands for -------

    Ans: user interface

  8. The user interface is the ------------ layout of an application.

    Ans: graphical

  9. URL stands for ------------

    Ans: Uniform Resource Locator

  10. URI stands for ------------

Ans: Uniform Resource Identifier

  1. URL is a----------- of URI that specifies where an identified resource is available and the mechanism for retrieving it.

Ans: subset

  1. A URI is a -------- of URL that identifies a resource either by location (URL), or a name(URN), or both (URL and URN).

    Ans: superset

13.A URI is an identifier of a ---------.

Ans: specific resource.
  1. A URL is a special type of---------- that also tells you how to access it, such as HTTPs, FTP, etc.—like

Ans: identifier

  1. The Information written in the URL gives you the ability to ------- from one web page to another with just one mouse click.

    Ans: switch

  2. A URI search the name as well as the location of a resource or file, which is in a --------- format.

    Ans: uniform

  3. HTTP (Hypertext Transfer Protocol), is the underlying format that is used to structure request and responses for effective communication between a --------------

Ans: client and a server.

  1. Types of HTTP Request Methods,----------- indicates that a resource should be fetched

Ans: GET

  1. Types of HTTP Request Methods,-------- means that data is pushed to the server

    Ans: POST

20.Client-side means that the action takes place on the -------.

Ans: user’s (the client’s) computer

  1. Server-side means that the action takes place on a ------

Ans: web server.