Top Dot Net Framework Interview Questions :: ALLInterview.com http://www.allinterview.com Top Dot Net Framework Interview Questions en-us Which is the best institute in hyderabad to learn DotNet? http://www.allinterview.com/showanswers/62865.html YOU CAN JOIN IN DECCANSOFT plase logon www.deccansoft.com what are partial classes? http://www.allinterview.com/showanswers/36070.html Partial classes is a new feature of OOPs in .NET2.0 Partial classes means split the class into multiple files. For example u r working with windows applications actually designer.cs is using a class like webform1, u can use How do you register the dotnet component or assembly ? http://www.allinterview.com/showanswers/20708.html The steps to register a dot net component is: The command line instruction to create a strong name. sn -k ComInterOp.snk. Strong name is a unique name created by hashing a 128-bit encryption key against the name of the Assembly (ComInterOp Difference between manifest , metadata? http://www.allinterview.com/showanswers/35309.html Manifest Maintains the information about the assemblies like version, name locale and an optional strong name that uniquely identifying the assembly. This manifest information is used by the CLR. The manifest also contains the security demand What is the difference between managed and unmanaged code? http://www.allinterview.com/showanswers/59742.html Code that is executed by the CLR. Managed code provides information (i.e., metadata) to allow the CLR to locate methods encoded in assembly modules, store and retrieve security information, handle exceptions, and walk the program stack. Manag What is gacutil.exe. Where do we store assemblies ? http://www.allinterview.com/showanswers/20711.html gacutil is a toll that will list, install, and uninstall assemblies in the GAC. Assemblies are of two types: application private and shared. The default is application private and only one application uses them. These are the assemblies that What is CLR and how it generates native code ? http://www.allinterview.com/showanswers/20486.html CLR stands for Common Language Runtime. It's the runtime environment of .Net Framework. It has one component called JIT or JITTER (Just in time translator) which is responsible for translating code from MSIL To Native code on the fly. What is MSIL, IL, CTS? http://www.allinterview.com/showanswers/20084.html MSIL means Microsoft intermediate language which is the output after compilation of source code in the .net languages. IL is the Intermediate language nothing but MSIL What is the main difference between VS 2005 and VS 2003? http://www.allinterview.com/showanswers/28611.html Please Read Atrical in http://geekswithblogs.net/murraybgordon/archive/2006/02/03/6 8074.aspx You will see diffrence..... What is serialization ? http://www.allinterview.com/showanswers/20627.html Serialization is the process of converting an object into a stream of bytes. Deserialization is the opposite process of creating an object from a stream of bytes. Serialization/Deserialization is mostly used to transport objects (e.g. during remo what are generics? Without generics what are the disadvantages in 1.1 http://www.allinterview.com/showanswers/36071.html Generics is a concept introduced in .NET 2.0 and these are just like templates in C++. Using generics we can create classes,methods,events, delegates which work with any type (like int,string,myclass etc). In .NET 2.0, System.Collections.Gener Define .NET architecture ? http://www.allinterview.com/showanswers/20583.html windows/web/webservices Data and XML Framework Class Library Common Language Runtime Operating System How Garbage Collector identifies the objects which are not in use? http://www.allinterview.com/showanswers/35449.html In the Dotnet CLR maintains the Heap. It stores the Objects which are recently used in the Top of the Heap. By using this GC identifies the objects which are recently used and which are not in use. What is side by side Execution ? http://www.allinterview.com/showanswers/20626.html More than one assembly (dll) is deployed and executed as side by side with out disturbing each other. What is the difference between STA and MTA? http://www.allinterview.com/showanswers/23417.html Apartment Threading (STA): This allows multiple threads to exist in a single application. In single threading apartment (STA), each thread is isolated in it?s own apartment. The process may contain multiple threads (apartments) however when a