How many namespaces are in .net version 1.1?
No Answer is Posted For this Question
Be the First to Post Answer
Can I write il programs directly?
What is a delegate, How many types of delegates?
What is different between webusercontrol and in webcustomcontrol?
Which ports are used by viruses? UDP/TCP?
Is there any thread in our .net programs?
What is .net3.5?
In code behind class, name the type of code found. Is it the server side code or client side code?
Usually in .net, the clr takes care of memory management. Is there any need for a programmer to explicitly release memory and resources? If yes, why and how?
Tell me what is a “jagged array”?
Explain about Behavioral design pattern?
How is .net able to support a lot of languages?
String[] a = new string[10] for(i=0; i<10; i++) { a[i] = i; } How many heap object will be created for this array. Choose the answer below. Ans: 1, 10, 11, 12