C#.NET INTERVIEW QUESTION & ANSWERS
DOT Net
TAGS
26. | What is a thread? |
---|---|
A thread is the basic unit to which the operating system allocates processor time. |
27. | Can you use pointers in C#? |
---|---|
Yes |
Posted by Aswini Aluri. (Nov 20, 2013) | |
Pointers in c# is unsafe. |
28. | What are wait handles? |
---|---|
|
29. | What are the types of arrays in C#? |
---|---|
|
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. |