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
Answer Posted / rak
11
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
What is garbage collection? Explain the difference between garbage collections in .net 4.0 and earlier versions?
Explain what is a delegate?
Explain the features that are common to all .Net languages.
Explain the .net framework overview?
Explain what is an application domain?
What is operator overloading in .net?
Tell me what is a “jagged array”?
As you know read-only variables and constants have many similarities, but what is at least one way that they differ?
What is "microsoft intermediate language" (msil)?
Explain the top .net class that everything is derived from?
What is difference between .net and .net core?
Explain boxing and unboxing in .net.
What is the difference between web application and enterprise application?
which method do you use to redirect the user to another page without performing a round trip to the client? How?
Explain what is the difference between constants and read-only variables?