Posts

Showing posts from 2017
ASP.Net MVC related questions Hi Friends, Now days, there are many companies asking about the ASP.Net MVC related questions in their interview process. So I thought of keeping few questions related to MVC and ASP.Net MVC. These questions will be help to all those who are attending the interviews or preparing for the ASP.Net MVC related questions. Here I am keeping the questions related to all the versions of ASP.Net MVC by keeping in mind that interviewer can ask the questions from any aspect. 1.    What is MVC?  Ans. MVC (Model View Controller) is one of the Software Architectural patterns which is built on 3 layers- Model layer, View layer and Controller layer. MVC is a pattern which basically talks about the separation of concern for a project where each of these layer is separate without any dependency. Here the 3 layers having their own individual roles like: a. Model - It is used as the Data Container. Mainly we write the public properties under this laye...

Most Interesting Questions in C#, ASP.Net and SQL Server, WCF, ASP.Net MVC

Most Interesting Questions in C#, ASP.Net and SQL Server, WCF, ASP.Net MVC Hello Guys, In this article, we will see the most interesting questions in Microsoft Technologies like in C#, ASP.Net, Sql Server, WCF services, ASP.Net MVC. Q 1. I have logged in to the ASP.Net website using my credential for the login page. Now I want that when my session is expired, it should logout the application and show the login page. With that It should also logged out from the Windows and I should use the Windows credentials again to reach to my application again. How do you think it can be done? Ans. This question is related to the Sessions in ASP.Net where the session time out is configured for the current user. And when the session gets expired, we need to set so that it should automatically come back to login page and user need to enter the credentials again. Session time can be set as: Q 2. In .Net Framework, Garbage collector is used for the Automatic Memory Management(to free-up the me...

3-6 yr Experience Interview Questions in .Net Technologies

3-6 yr Experience Interview Questions in .Net Technologies Hai Friends, Below I am posting the questions and answers for the short questions for 3-6 years experience guys. These questions will be helpful for those who are either preparing for the interview or attending the interviews. This will also be helpful for the last minute preparation in quickest way. If anyone has better answers, please reply to this post and I will include the better answer to the post as it will be helpful for all of us. CLR and C# 1. Types of Authentication IIS. A. Authentication is the process which helps web server(IIS) to check and confirm the identity of the client who request to access the website. Types of Authentication: a. Http Authentication: Basic Authentication, Digest Authentication b. Integrated Windows Authentication: NTLM(Network Lan Manager), Kerberos c. Client Certificates Access d. Anonymous and UnAuthenticated Access e. Logon-Redirection based: Form Authentication(IIS 7.0) ...