Skip to main content

Posts

ASP.Net MVC related questions

Hey Friends, Now a days we can see lot of companies asking about the ASP.net MVC related questions in their interviews. So i thought of to keep few questions which are related to the ASP.Net MVC and they will be helpful for all of them who are going for the interviews or preparing for the ASP.Net MVC. Here I kept many questions which are related to all the versions of ASP.Net MVC to keep in mind that interviewer can ask the questions from various aspects. 1.    What is MVC?  Ans.  MVC (Model View Controller) is one of the Software Architectural pattern which is built on 3 layers. So it is the pattern which basically talks about the separation of concern for a project. Here the 3 parts are having their own roles like: a. Model - It is used as the Data Container or it can also have the business rules, functions, logic's etc. b. View - It is mainly the UI (User Interface) part which is the main application built using the Web technologies like ASP.Net etc. It consist

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 memory which is no longer used by the resources). There are 2 type

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) 2. Types of Authentication and Authorization in ASP.Net. A.