VB.Net Interview Question and Answers

121. Can one DLL file contains the compiled code of more than one .NET language?
  No, a DLL file can contain the compiled code of only one programming language.
 
Your Name Your Email-ID
Your Answer
122. Which is the base class for all the classes in .NET Framework?
  The System.Object class
 
Your Name Your Email-ID
Your Answer
123. 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)
 
Your Name Your Email-ID
Your Answer
124. Which method do you use to enforce garbage collection in .NET?
  The System.GC.Collect() method.
 
Your Name Your Email-ID
Your Answer