ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
info       Did you received any Funny E-Mails from your Friends and like to share with rest of our friends? Yeah!! you can post that stuff   HERE
Google
 
Categories  >>  Software  >>  Microsoft Related  >>  Dot Net  >>  Dot Net Framework
 
 


 

 
 Dot Net Framework interview questions  Dot Net Framework Interview Questions
 Dot Net Remoting interview questions  Dot Net Remoting Interview Questions
 Dot Net WindowsForms interview questions  Dot Net WindowsForms Interview Questions
 Dot Net General interview questions  Dot Net General Interview Questions
 Dot Net AllOther interview questions  Dot Net AllOther Interview Questions
Question
What are the types of assemblies and where can u store them
and how ?
 Question Submitted By :: Pranab Mukherjee
I also faced this Question!!     Rank Answer Posted By  
 
  Re: What are the types of assemblies and where can u store them and how ?
Answer
# 1
assemblies are of two types, They are Shared assembly and 
private assembly. shared assemblies are shared among 
multiple applications and they are stored in Global 
Assembly Cache. Private Assemblies implies to a single 
application and they are stored in the root directory of 
the application.
 
Is This Answer Correct ?    6 Yes 2 No
Santhosh.gs
 
  Re: What are the types of assemblies and where can u store them and how ?
Answer
# 2
Please note there are three types of Assemblies.

1) Private - Assembly available only to clients in the same 
directory.
2) Shared - Assemblies in GAC
3) Satelite - Assembly in the specific directory of the 
locale.
 
Is This Answer Correct ?    9 Yes 2 No
Anonymous
 
 
 
  Re: What are the types of assemblies and where can u store them and how ?
Answer
# 3
1.assemblies is unit of deployment like exe dll
assemblies information is stored in Manifest where all 
details of assemblies are include.
This manifiest is stored in PE file that is protable 
executable fime we can view assemblies using ILDASM.

2.types
 private
 shared
private assembly is used for single application which is 
stored in application directory.

shared assembly is which is used by many users.and that is 
stored in (GAC) that is Global Assembly Cache where 
adminstrator can make rights on them and he is only one 
person where he can add or remove it.

 
Is This Answer Correct ?    1 Yes 1 No
Payal
 
  Re: What are the types of assemblies and where can u store them and how ?
Answer
# 4
1.assemblies is unit of deployment like exe dll
assemblies information is stored in Manifest where all 
details of assemblies are include.
This manifiest is stored in PE file that is protable 
executable fime we can view assemblies using ILDASM.

2.types
 private
 shared
private assembly is used for single application which is 
stored in application directory.

shared assembly is which is used by many users.and that is 
stored in (GAC) that is Global Assembly Cache where 
adminstrator can make rights on them and he is only one 
person where he can add or remove it.
 
Is This Answer Correct ?    1 Yes 0 No
Bhavani
 
  Re: What are the types of assemblies and where can u store them and how ?
Answer
# 5
Assembly is Basic Unit Application Deployment in .Net. This 
is either DLL or EXE.We have 3 types of Assemblies in .Net
1.Private Assembly:This is Local to Perticular Application 
and not sharable among all the applications.This will be 
stored on application Root directory.
2.Shared Assembly:This is Sharable among all the 
applications in our System.This will Stored in Global 
Assembly Cache.
3.Sattelite Assembly:This is not having appliaction having 
only Language Specification.
 
Is This Answer Correct ?    3 Yes 1 No
Srinivas M
 
  Re: What are the types of assemblies and where can u store them and how ?
Answer
# 6
Assembly having 3 Types:
1) Private: only for single application.
it will be stored in local Root Directory.
2)Shared: Shared b/w more then one Application.
Stored in GAC(Global Assembly Cache).
3)Sattelite:This is uesd for Localization of Language.
(Localization means Translating)
 
Is This Answer Correct ?    2 Yes 0 No
Mehul Kumar Wani
 
  Re: What are the types of assemblies and where can u store them and how ?
Answer
# 7
*Single and Multi-File Assemblies:
There are several ways to group the various elements in an 
assembly. You can group all elements (manifest, MSIL and 
resources) in a single physical file or group them 
separately in several files. An assembly that groups all 
elements in a single file is called a single file assembly, 
whereas the assembly that groups its elements in multiple 
files is called a multi-file assembly.

A single-file assembly can be created by compiling the 
application in Visual Studio .NET. The Visual Studio .NET 
IDE for Visual Basic can only be used to create single-file 
assemblies. Multifile assemblies can be created using 
command-line compilers.

*Private and Shared Assemblies:
Private assemblies are those assemblies that are accessible 
only to the applications residing in the same directory as 
that of the assembly. When you create an assembly, it is 
private by default. No other application can make use of 
private assembly. For a private assembly to be accessible 
by more than one application, you must copy the files of 
the assembly separately into the folder in which the other 
application resides.

Shared assemblies are assemblies added to the GAC (Global 
Assembly cache). GAC is used to store assemblies and to 
share them between multiple applications. IN the shared 
system, the names of the assemblies should be unique as it 
can be accessed by all applications. The newer versions of 
the component should also have unique names. These can be 
achieved by using a strong name for the assembly. A shared 
assembly is placed in the GAC folder that is reserved for 
shared assemblies.
 
Is This Answer Correct ?    1 Yes 0 No
Kakarala Sowjanya
 

 
 
 
Other Dot Net Framework Interview Questions
 
  Question Asked @ Answers
 
Tell me the best web-sites for Learning the ASP DOT NET.  1
what is difference b/w .net 1.1 and .net 2.0. I need Answer in c# , asp.net and ado.net Level.Like c#1.1 and c#.1.1 , ado.net1.1 and ado.net2.0 and asp.net1.1 and asp.net2.0  4
What does CLR do as soon as an assembly is created ? MMTS1
How do assemblies find each other?  1
what are background threads? give ex? Kanbay3
What is .NET Framework?  3
What are the methods in Thread class?  1
What are the different authentication modes in the .NET environment?  2
What is the use of trace utility ?  1
What is the main difference between VS 2005 and VS 2003? CTS3
In which circumstances you used delegates? HP3
About namespaces ? MMTS2
What are the contents of assembly?  2
What is strong name and which tool is used for this ? Accenture3
Can you draw and explain the .NET Farmework? Bosch2
about triggers? CSC1
How to ensure the credentials for WebService using Windows authentication Proteans1
What is the difference between managed and unmanaged code? IBM5
I am confusing about reflection.can any one tell about REFLECTION with example? TCS1
How can Bitwise OR operator reresents in .Net?? To which alias name a variable points to if it is declared as "int" variable??  1
 
For more Dot Net Framework Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com