FeedBack Form

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

C#.NET INTERVIEW QUESTION & ANSWERS

26. What is a thread?
  A thread is the basic unit to which the operating system allocates processor time.
Your Name Your Email-ID
Your Answer
 
27. Can you use pointers in C#?
  Yes
  Posted by Aswini Aluri. (Nov 20, 2013)
 

Pointers in c# is unsafe.

Your Name Your Email-ID
Your Answer
 
28. What are wait handles?
 
    Wait handles sends signals of a thread status from one thread to other thread. There are three types of wait modes are :
  • Wait One
  • Wait Any
  • Wait All
Your Name Your Email-ID
Your Answer
 
29. What are the types of arrays in C#?
 
    There are three types of arrays in C# are :
  • Single-Dimensional arrays
  • Multidimensional arrays
  • Jagged arrays.
Your Name Your Email-ID
Your Answer
 
30. Can two catch blocks be executed?
  No, once the proper catch section is executed the control goes to finally block. So there will not be any scenarios in which multiple catch blocks will be executed.
Your Name Your Email-ID
Your Answer