Assembly Manifest is a file that contains data that describes how the elements present inside an assembly are connected to each other The assembly manifest contains assembly metadata to define the scope of the assembly and resolve references to resources and classes
Correct Answer: Setting up the break points: Go to the line where you need to mark the breakpoint Click with mouse on left corner margin of that line Another way is to press F9
Correct Answer: A web application resides in the server and serves the client’s requests over internet The client access the web page using browser from his machine When a client makes a request, it receives the result in the form of HTML which are interpreted and displayed by the browser A web application on the server side runs under the management of Microsoft Internet Information Services (IIS) IIS passes the request received from client to the application The application returns the requested result in the form of HTML to IIS, which in turn, sends the result to the client
3. What are the ways of preserving data on a Web Form in ASP.NET?
Correct Answer: These objects provide two levels of scope: Application State Data stored in the application object can be shared by all the sessions of the application Application object stores data in the key value pair
Correct Answer: Net allows developers to write program logic in at least 25 languages The classes written in one language can be used by other languages in Net This service of Net is possible through CTS which ensure the rules related to data types that all language must follow It provides set of types that are used by all NET languages and ensures NET language type compatibility
Correct Answer: It is the folder that contains web applications The folder that has been published as virtual folder by IIS can only contain web applications
6. What is the information does assembly manifest provide?
Correct Answer: Information provided by Assembly Manifest: Assembly Name Version Number Culture Strong name List of files inside the assembly Reference information
7. Explain how a .NET application is compiled and executed?
Correct Answer: Any code written in any NET complaint languages when compiled, converts into MSIL (Microsoft Intermediate Language) code in form of an assembly through CLS, CTS IL is the language that CLR can understand On execution, this IL is converted into binary code by CLR?s just in time compiler (JIT) and these assemblies or DLL are loaded into the memory
Correct Answer: NET?s Base class library exists in order to encapsulate huge number of common functions and makes them easily accessible to the developer NET base class library provides the functionality like ADONET, XML, Threading, IO, Security, Diagnostics, Resources, Globalization, collections etc It serves as the main point of interaction between developer and runtime
9. Explain the process of creating a context menu using the ContextMenu component
Correct Answer: ContextMenu component provides the users with the ability to access some very frequently used commands Context menu works by right click of mouse They mainly provide access to commands particular to the control that has been clicked upon
Correct Answer: A delegate declares a ref type that references a named of anonymous method Delegates are secure and type-safe Consider them as type safe function pointers