Dot Net Interview questions for 3+ years of experience - Part-6

Previous questions1)What is the default mapping logic used by ASP.NET MVC ?Ans)The default mapping logic used by ASP.NET MVC is as follows :-/[Controller]/[ActionName]/[Parameters]For example,controller = "Home", action = "Index", id = UrlParameter----------------------------------------------------------------------2)What is difference between Web site and Web application ?Ans)Both function and perform similarly, but still differ in following ways.Web application:a) We can't include c# and vb page in single web application.b) We can set up dependencies [...]

Asp.Net Multiple Choice Interview Questions -1

1)Which is the default method that will be called on a controller if one is not explicitly specified in Asp.Net MVC ?Ans)Select from following answers:HomeIndexWelcomeA method named Index is the default method that will be called on a controller if one is not explicitly specified.Example :-http://localhost:7413/HelloWorldIn [...]

Multiple Choice Questions-1

1)In traditional web service, can Hash table (IDictionary interface) can be serialized or de-serialized ?Ans)Select from following answers:YesNoDon't KnowNo.Traditional web service uses XmlSerializer class to serialize or de-serialize objects into/from xml.Classes that implement the IDictionary interface, [...]

Sql Server Interview questions part-1

1)Difference between Primary Key and unique key ?Ans)Primary Key Restrict duplicate values and null values each table can have only one primary key,default clustered index is the primary key.unique key restrict duplicate values and allow only one null value. default non clustered index is an unique key------------------------------------2)What is the clause that specifies a condition for a group or an aggregate?Ans)Select from following answers:A. DistinctB. Where clauseC. ExistsD. Having ClauseHaving ClauseThis is how we can create a condition [...]

Dot Net Interview questions for 3+ years of experience - Part-5

Previous QuestionsNext questionsQ1)What is DLL Hell?Ans)DLL Hell: DLL Hell refers to the set of problems while sharing multiple applications under a single common component like Dynamic Link Library(DLL) or a Component Object Model(COM) class.Simply, it is the problem which occurs while registering the DLL components with a common name.DOT Net has removed this problem by introducing the concept of versioning.Versioning: Versioning is a process where, every shared application creates its own version number.For Example, Let us assume that the version [...]

If you define additional methods in the WCF service that are not in the service contract, will it be visible to client applications ?

Select from following answers:YesNoCan't sayOnly methods which are defined in the service contract will be visible to the client applications. Show Correct Ans [...]

Which file specifies the name and location of the class that implements the WCF service ?

Select from following answers: IService.cs fileweb.config fileService.svcfileThe Service.svc file specifies the name and location of the class that implements the WCF service. Visual Studio generates that file when you first create the WCF service. View Correct Answer [...]

JQuery Interview Questions Part -1

1)What is the use of Delegate() Method in jQuery?Ans)The delegate() method can be used in two ways.1) If you have a parent element, and you want to attach an event to each one of its child elements, this delegate() method is used.Ex:Un-ordered ListInstead of attaching an event to each element, you can attach a single event to element.Example:$("ul").delegate("li", "click", function(){$(this).hide();});2) When an element is not available on the current page, this method is used..live() method is also used for the same purpose but, delegate() method [...]

Other Questions

1)What are different People Management Styles?Ans)The different styles are:Directing Coaching Supporting Delegating Directive: The leader provides specific instructions and closely supervises task accomplishment. Structure, Control, SuperviseCoaching: Direct and closely supervise; also explain decisions, solicit suggestions, and support progressSupporting: Facilitate and support efforts towards task accomplishment. Also share responsibility for decision making with subordinates.Praise, Listen, FacilitateDelegating: Turn over responsibility for [...]

.NET Framework Interview questions

Q1)What are the debugging windows available?Ans)The windows which are available while debugging are known as debugging windows.These are: Breakpoints, Output, Watch, Autos, Local, Immediate, Call Stacks, Threads, Modules, Processes, Memory, Disassembly and Registers.-------------------------------------------Q2)How do we step through code?Ans)Stepping through the code is a way of debugging the code in which one line is executed at a time.There are three commands for stepping through code:Step Into: This debugging mode is usually time-consuming. [...]