VB.Net Interview Questions and Answers Pdf - 3

Question: 11

What is the GAC? What problem does it solve?

Global Assembly Cache. It resolves DLL hell, Versioning etc.

Question: 12

What is the difference between an EXE and a DLL?

An EXE is an Executable that contains an entry point and instructions to execute.

A DLL only contains pieces of functionality to be used by an EXE (or another DLL).

Question: 13

What is the maximum number of classes a .NET DLL can contain?

Unlimited

Question: 14

What are possible implementations of distributed applications in .NET?

.NET Remoting and ASP.NET web Services. If we talk about the Framework Class Library, noteworthy classes are in System.Runtime.

Remoting and System.Web.Services.

Question: 15

What is Notepad.Net?

One of the tools which will be used for developing .Net applications.

Related Questions