.Net Interview Questions By Shivprasad Koirala

Save Extra with 3 offers

Replacement Reason Replacement Period Replacement Policy
Physical Damage, Defective, Wrong and Missing Item 10 days from delivery Replacement

.net interview questions by shivprasad koirala

  • Print length 412 pages
  • Language English
  • Dimensions 20.32 x 2.67 x 25.4 cm
  • ISBN-10 8183331475
  • ISBN-13 978-8183331470
  • See all details
  • This item: .Net Interview Questions – 7th Revised Edition by Shivprasad Koirala Paperback ₹423.00In stock.Sold by Cocoblu Retail and ships from Amazon Fulfillment.Get it by Monday, January 30
  • SQL Server – Interview Questions by Shivprasad Koirala Paperback ₹331.00In stock.Ships from and sold by R K Books.Get it Feb 10 – 11
  • .NET Interview Question for Freshers and Experienced by Er. Vaibhav Singh Chauhan Paperback ₹421.00Available to ship in 1-2 days.Sold by Cocoblu Retail and ships from Amazon Fulfillment.Get it by Tuesday, January 31
  • This is not one of the typical .NET interview questions but on knowledge aspect you will find this as interesting because while you are working in some of the IT company or project this situation can occur in front of you so at that time this might help y… Read More

    Is Tempdata Private to a User ?

    Yes, Tempdata is private to a user.

    Explain the Various Ways of Doing DI in MVC?

    This is an easy topic to understand but very difficult to explain to the interviewer in simple words. So, I would suggest to go through the below explanation, understand it and create your simple one liner.

    There are three ways of doing DI: Scoped, Transient and Singleton.

  • Transient: Creates new instances, every single time service is injected
  • Scoped: Creates new instances, once per request made to server
  • Singleton: Instantiates one global object for all requests coming to server from any user
  • The below shows the same visually. In transient for every dependency injection, new instance will be injected. For example, in the below for “obj” and “obj1”, fresh new instances will be injected for every request.

    In case of scoped for every request, the same instance will be injected for every dependency injection. So “obj” and “obj1” will have the same instance injected.

    In case of singleton, one big global instance is created. For all request, for all Dependency injection, same instance will be injected.

    What are the Various Ways of Doing Session Management in ASP.NET?

    There three ways of doing session management:

    Session is user interaction which happens with a website over a period of time. Its interaction which happens right when browser opens and browser closes.

    Explain the Concept of Reverse Proxy?

    Reverse proxy is a concept where the server acts like a mediator. Kestrel works on reverse proxy concept it takes the request from the main web server like IIS / Apache and forwards its to MVC application and vice-versa.

    Cookies are small text file where browser can store user related information.

    Explain “HTTP is a Stateless Protocol”?

    HTTP does not remember states between request and response. User sends a request, server processes it and sends response. Now if the user comes again in the same session, the server treats it as a new request.

    Explain REST and Architectural Constraints of REST?

    REST stands for representational state transfer. REST is a architectural style/principle where client and server talks in representations and states.

    Some important principle of REST is Client Server, Statelessness, Unique URI, Manipulation happens through representation. WebAPI helps to expose services / data using HTTP protocol.

    C# (Csharp) .NET Mock Interview | C# .NET Interview Questions & Answers

    Related Posts

    Leave a Reply

    Your email address will not be published. Required fields are marked *