FeedBack Form

Your Name :
Your Email :
Your Location :
Your Message :
   
FeedBack

VB.NET INTERVIEW QUESTION & ANSWERS

121. What are Static Assembly and Dynamic Assembly?
  Static assemblies can include .NET Framework types (interfaces and classes) as well as resources for the assembly (bitmaps, JPEG files, resource files, and so forth).
Static assemblies are stored on disk. Dynamic assemblies run directly from memory and are not saved to disk before execution.
Your Name Your Email-ID
Your Answer
 
122. What is the difference between datagrid and gridview?
  Datagrid is used in windows application and gridview is used in web and in datagrid we cannot write the code for datagrid properties where as for grid view we can write the code like template column item template etc this will not be done in datagrid.
Your Name Your Email-ID
Your Answer
 
123. What is the difference between SAO and CAO?
 
    SAO has two modes Single call and Singleton.
  • Single object is created with every method call thus making object stateless.
  • Singleton is created only once and the object is shared with all clients.
  • CAO :The creation request is sent from the client side. Client holds a proxy to the server object created on server.
Your Name Your Email-ID
Your Answer
 
124. What do you mean by Serialize?
  The term serialization describes the process of persisting (and possibly transferring) the state of an object to a stream.
Your Name Your Email-ID
Your Answer
 
125. How is method overriding different from overloading?
  When overriding, you change the method behavior for a derived class. Overloading simply involves having a method with the same name within the class.
Your Name Your Email-ID
Your Answer