VB.Net Interview Question and Answers

111. What is the base class of .net?
  System.Object
 
Your Name Your Email-ID
Your Answer
112. What namespace does the Web page belong in the .NET Framework class hierarchy?
  System.Web.UI.Page
 
Your Name Your Email-ID
Your Answer
113. What is a formatter?
  A formatter is an object that is responsible for encoding and serializing data into messages on one end, and deserializing and decoding messages into data on the other end.
 
Your Name Your Email-ID
Your Answer
114. What is static member?
  The member defined as static which can be invoked directly from the class level, rather than from its instance.
 
Your Name Your Email-ID
Your Answer
115 What is sealed class?
  Sealed classes are those classes which can not be inherited and thus any sealed class member can not be derived in any other class. A sealed class cannot also be an abstract class.
 
Your Name Your Email-ID
Your Answer