This section includes 7 InterviewSolutions, each offering curated multiple-choice questions to sharpen your Current Affairs knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
Name The Different Components Of An Assembly? |
|
Answer» An assembly is a logical UNIT that is MADE up of the following four different types of components:
An assembly is a logical unit that is made up of the following four different types of components: |
|
| 2. |
What Are The Different Types Of Assemblies? Explain Them In Detail |
|
Answer» The following are the two types of assemblies: Private Assembly - Refers to the assembly that is used by a SINGLE application. Private assemblies are kept in a local folder in which the client application has been installed. Public or Shared Assembly - Refers to the assembly that is allowed to be shared by multiple applications. A shared assembly must reside in Global Assembly Cache (GAC) with a strong name assigned to it. For example, imagine that you have created a DLL containing INFORMATION about your business logic. This DLL can be used by your client application. In order to RUN the client application, the DLL must be included in the same folder in which the client application has been installed. This makes the assembly private to your application. Now suppose that the DLL NEEDS to be reused in different applications. THEREFORE, instead of copying the DLL in every client application folder, it can be placed in the global assembly cache using the GAC tool. These assemblies are called shared assemblies. The following are the two types of assemblies: Private Assembly - Refers to the assembly that is used by a single application. Private assemblies are kept in a local folder in which the client application has been installed. Public or Shared Assembly - Refers to the assembly that is allowed to be shared by multiple applications. A shared assembly must reside in Global Assembly Cache (GAC) with a strong name assigned to it. For example, imagine that you have created a DLL containing information about your business logic. This DLL can be used by your client application. In order to run the client application, the DLL must be included in the same folder in which the client application has been installed. This makes the assembly private to your application. Now suppose that the DLL needs to be reused in different applications. Therefore, instead of copying the DLL in every client application folder, it can be placed in the global assembly cache using the GAC tool. These assemblies are called shared assemblies. |
|
| 3. |
Can One Dll File Contain The Compiled Code Of More Than One .net Language? |
|
Answer» No, a DLL file can contain the COMPILED CODE of only one programming language. No, a DLL file can contain the compiled code of only one programming language. |
|
| 4. |
What Is The Maximum Number Of Classes That Can Be Contained In A Dll File? |
|
Answer» There is no limit to the maximum number of CLASSES that can be CONTAINED in a DLL FILE. There is no limit to the maximum number of classes that can be contained in a DLL file. |
|
| 5. |
Explain An Intermediate Language? |
|
Answer» Assemblies are made up of IL code modules and the metadata that describes them. Although programs may be compiled VIA an IDE or the COMMAND line, in fact, they are simply TRANSLATED into IL, not machine code. The ACTUAL machine code is not generated until the FUNCTION that requires it is called. Assemblies are made up of IL code modules and the metadata that describes them. Although programs may be compiled via an IDE or the command line, in fact, they are simply translated into IL, not machine code. The actual machine code is not generated until the function that requires it is called. |
|
| 6. |
What Are The Types Of Assemblies? |
|
Answer» ASSEMBLIES are of two TYPES: 1. PRIVATE Assemblies 2. Shared Assemblies Assemblies are of two types: 1. Private Assemblies 2. Shared Assemblies |
|
| 7. |
What Are Assembly Attributes? |
|
Answer» Attributes are declarative tags in code that INSERT ADDITIONAL metadata into an ASSEMBLY Attributes are declarative tags in code that insert additional metadata into an assembly |
|
| 8. |
What Are Kinds Of Processors? |
|
Answer» Processors can BROADLY be DIVIDED into the categories of: CISC, RISC, hybrid, and SPECIAL purpose. Processors can broadly be divided into the categories of: CISC, RISC, hybrid, and special purpose. |
|
| 9. |
What Is Data Movement? |
|
Answer» Data movement instructions move data from ONE location to another. The source and destination locations are determined by the ADDRESSING MODES, and can be registers or memory. Some processors have different instructions for LOADING registers and storing to memory, while other processors have a SINGLE instruction with flexible addressing modes. Data movement instructions move data from one location to another. The source and destination locations are determined by the addressing modes, and can be registers or memory. Some processors have different instructions for loading registers and storing to memory, while other processors have a single instruction with flexible addressing modes. |
|
| 10. |
What Is Assembly Condition Codes? |
|
Answer» Condition codes are the list of possible conditions that can be TESTED during CONDITIONAL instructions. Typical conditional instructions include: conditional BRANCHES, conditional JUMPS, and conditional subroutine calls. Some processors have a few additional data related conditional instructions, and some processors make every instruction conditional. Not all condition codes available for a PROCESSOR will be implemented for every conditional instruction. Condition codes are the list of possible conditions that can be tested during conditional instructions. Typical conditional instructions include: conditional branches, conditional jumps, and conditional subroutine calls. Some processors have a few additional data related conditional instructions, and some processors make every instruction conditional. Not all condition codes available for a processor will be implemented for every conditional instruction. |
|
| 11. |
Explain Some Assembly Controls? |
Answer»
|
|