VB.NET INTERVIEW QUESTION & ANSWERS
71. |
Which namespace is needed to implement debug and trace ? |
|
Debug and trace class belongs to System.Diagnostic namespace. |
72. |
What are the types of switches? |
|
There are two types of switches are :
- Boolean Switch
- Trace Switch
|
73. |
What is side-by-side execution? |
|
Side-by-side execution is the ability to run multiple versions of an application or component on the same computer. You can have multiple versions of the CLR and multiple versions of applications and components that use a version of the runtime on the same computer at the same time. |
74. |
What is the difference between strong-typing versus weak-typing? |
|
- Strong type is checking at the variables in compile time.
-
Weak typing is checking the variables at run-time.
|
75. |
How can you create a strong name for a .NET assembly? |
|
With the help of Strong Name tool (sn.exe). |