Top Dot Net General Interview Questions :: ALLInterview.com http://www.allinterview.com Top Dot Net General Interview Questions en-us What is WSDL and disco file ? http://www.allinterview.com/showanswers/20588.html WSDL: Files with the WSDL extension contain web service interfaces expressed in the Web Service Description Language (WSDL). WSDL is a standard XML document type specified by the World Wide Web Consortium. WSDL files are used to communicate What is CLR, CLS,CTS http://www.allinterview.com/showanswers/59982.html The CLR is the execution engine for .NET framework applications. Commom Type System. This is the range of types that .NET runtime (CLR) understands. Commom Language Specification. This is the subset of CTS, which all .NET languages must sup Explain the .NET architecture. http://www.allinterview.com/showanswers/4811.html The architecture of any application depends upon the sequence of execution of the program. Since ASP.Net is a web application, the execution starts from the web server and follows the entire life cycle of the aspx page. Explain manifest & metadata. http://www.allinterview.com/showanswers/16143.html In asp.net 2.0 collection of file are called assembly.and in these assembly one file(EXE or .DLL)contains a special metadata called manifest.and these manifest is stored as binary data and contains the detail like versioning requirements for Difference between VB.NET and C#. Which is faster ? http://www.allinterview.com/showanswers/20589.html No difference is there when you are using VB.NET OR C3.NET as the Code is compiled to IL. Both show equal performance when it comes to the development. What is the Difference between a sub and a function? http://www.allinterview.com/showanswers/16144.html SUB is a method FUNCTION is to return a value to it How many languages .NET is supporting now? http://www.allinterview.com/showanswers/4812.html 44 language What is MSIL code ? http://www.allinterview.com/showanswers/20584.html This is an acronym for Microsft Intermediate Language. In .net code that a developers develops will be complied in to MSIL code by the respective compilers and this code will be targeted towards the CLR which inturn contains JIT Compilers .T is c#.net supports multiple inheritance? http://www.allinterview.com/showanswers/58526.html No.C# sharp does not support multiple inheritance . Single inheritance is only possible in c# diff between forms authentication and windows authentication? http://www.allinterview.com/showanswers/58164.html forms authentication is used for internet and intranet based applications. and windows authentication is the default authentication provided by the .NET framework. What is the Difference between directcast and ctype? http://www.allinterview.com/showanswers/16148.html DirectCast requires the run-time type of an object variable to bethe same as the specified type.The run-time performance ofDirectCast is better than that of CType, if the specified type and the run-time typeof the expression are the same. How can we convert XML data into DataBase table IN .Net? http://www.allinterview.com/showanswers/26352.html dSet.ReadXml(Server.MapPath("Forms.xml")) Types of JIT and what is econo-JIT ? http://www.allinterview.com/showanswers/20585.html Pre-JIT (Compiles entire code into native code at one stretch) Ecno-JIT (Compiles code part by part freeing when required) Normal JIT (Compiles only that part of code when called and places in cache) why do you want to join deloitte, where do you exactly fit in. http://www.allinterview.com/showanswers/59990.html This is the main question in 2 business rounds, your ans will make u go to next level. be sure u hav done gud reaearch on company, and show them what they and and what you have for them. do some gud homework, know ab't company surrent b What is RunTime Polymorphism? http://www.allinterview.com/showanswers/59981.html Function, Constructor, Operater overloading comes under compile time polymorphism and function overriding, virtual functions come under runtime polymorphism.