VB.Net Programming Interview Questions and Answers - 4

Question: 16

Name some of the Microsoft Application Blocks?

Examples:

Exception Management

Logging

Data Access

User Interface

Caching Application Block for .NET

Asynchronous Invocation Application Block for .NET

Configuration Management Application Block for .NET (there are others) we use Exception and Data Access.

Question: 17

Which template must you provide, in order to display data in a Repeater control?

ItemTemplate

Question: 18

What are the contents of assembly?

In general, a static assembly can consist of four elements:

The assembly manifest, which contains assembly metadata.

Type metadata.

Microsoft Intermediate Language (MSIL) code that implements the types.

A set of resources.

Question: 19

What are the ways to deploy an assembly?

An MSI installer, a CAB archive and XCOPY command.

Question: 20

What are the different types of assemblies available and their purpose?

Private Assemblies: Assembly used within an application is known as private assemblies.

Public/Shared Assemblies: Assembly which can be shared across application is known as shared assemblies. This can be done using SN.EXE. the same has to be registered using GACUtil.exe (Global Assembly Cache).

Satellite Assemblies: These assemblies contain resource files pertaining to a locale (Culture+Language). These assemblies are used in deploying an Global application for different languages.

Related Questions