VB.NET INTERVIEW QUESTION & ANSWERS
16. |
What is the difference between Namespace and Assembly? |
|
- Assembly is physical grouping of logical units.
- Namespace logically groups of classes.
|
17. |
What is meant by .NET framework? |
|
The .NET Framework is an environment for building, deploying, and running Web Services and other applications. It consists of three main parts : - The Common Language Runtime
- The Framework classes
- ASP.NET
|
18. |
What are the different types of applications supported in .NET (or) .NET Framework? |
|
.NET or .NET Framework is a complete environment for developers to develop, run, and deploy the following applications :- Console applications
- Windows Forms applications
- Windows Presentation Foundation applications (WPF)
- Web applications (ASP.NET applications)
- Web services
- Windows services
Service-oriented applications using Windows Communication Foundation (WCF)
- Workflow-enabled applications using Windows Workflow Foundation (WF)
|
19. |
How many .NET languages can a single .NET DLL contain? |
|
It contains many languages. |
20. |
What namespaces are necessary to create a localized application? |
|
- System.Globalization
- System.Resources
|