FeedBack Form

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

VB.NET INTERVIEW QUESTION & ANSWERS

101. Which namespace has threading?
  System.threading
Your Name Your Email-ID
Your Answer
 
102. What is the use of System.Diagnostics.Process class?
 
  • The System.Diagnostics namespace provides the interfaces, classes, enumerations and structures that are used for tracing.
  • The System.Diagnostics namespace provides two classes named Trace and Debug that are used for writing errors and application execution information in logs.
Your Name Your Email-ID
Your Answer
 
103. What does assert () method do?
  In debug compilation, assert takes in a Boolean condition as a parameter, and shows the error dialog if the condition is false. The program proceeds without any interruption if the condition is true.
Your Name Your Email-ID
Your Answer
 
104. What is datagrid?
  The DataGrid Web server control is a powerful tool for displaying information from a data source. It is easy to use; you can display editable data in a professional-looking grid by setting only a few properties. At the same time, the grid has a sophisticated object model that provides you with great flexibility in how you display the data.
Your Name Your Email-ID
Your Answer
 
105. Do events have return type?
  No, events do not have return type.
Your Name Your Email-ID
Your Answer