EnggRoom

Full Version: Asp.Net Interview Question With Answer
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Que 1:-What are the two main parts of the .NET Framework?
Ans:- (1) The common language runtime (CLR).
(2).NET Framework class library.

Que 2:-List the types of Authentication supported by ASP.NET.
Ans:-(1)Windows (default)
(2)Forms
(3)Passport
(4)None (Security disabled)
Que 3:-What is Windows Forms?
Ans:-It is employed for developing Windows GUI applications. It is a class library that gives developers access to Windows Common Controls with rich functionality. It is a common GUI library for all the languages supported by the .NET Framework

Que 4:-What is Web Services?
Ans:-This are programmable business logic components that provide access to functionality through the Internet. Standard protocols like HTTP can be used to access them. Web services are based on the Simple Object Access Protocol (SOAP), which is an application of XML. Web services are given the .asmx extension.

Que 5:-Explain Assembly and Manifest.
Ans:-Assembly is a collection of one or more files and one of them (DLL or EXE) contains a special metadata called Assembly Manifest. The manifest is stored as binary data and contains details like versioning requirements for the assembly, the author, security permissions, and list of files forming the assembly. An assembly is created whenever a DLL is built. The manifest can be viewed programmatically by making use of classes from the System.Reflection namespace. The tool Intermediate Language Disassembler (ILDASM) can be used for this purpose. It can be launched from the command prompt or via Start> Run