What are the contents of assembly?
Answers were Sorted based on User's Feedback
Answer / guest
In general, a static assembly can consist of four elements:
o The assembly manifest, which contains assembly metadata. o
Type metadata. o Microsoft intermediate language (MSIL) code
that implements the types. o A set of resources.
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / satyambabu
manifest
metadata
type definations
msil
resources
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / narendra
An assembly represents a group of resources,type
definitions,and implementation of those types.
An ASSembly is self describing .an assembly consists
metadata information, which is used by CLR for everything
from typechecking and security to actually invoking the
component methods.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / kiran
Manifest
Metadata
IL Code
Resources
these are contents of assembly
| Is This Answer Correct ? | 2 Yes | 0 No |
Can you share processes between Windows services?
Explain different types of cookies in .NET?
What security mechanisms to enforce for Authenticating and authorizing the users?
What is the Difference between a sub and a function?
How does linq work?
i had attended to infosys interview on 17th april 2010...on .net..3+ experience for Technology Analyst .. to my knowledge i did well in technical and hr whether i loose the interview or still processing is taking place..am confused please. what accuatly would be happend?
Explain me what is the difference between an abstract class and an interface?
What is garbage collection and how it works ?
questions on various scenarios on exception handling? like for example.... try { a; b; ...exception occurs here...what happens...will catch execute or will finally execute...will c execute c; } catch { a; b; c; } fianlly { a; b; }
What's typical about a windows process in regards to memory allocation in .net?
What is RPC? What is the use of it?
In code behind class, name the type of code found. Is it the server side code or client side code?