What is difference between system.string and system.stringbuilder classes?
Answer / Arpita Gupta
System.String is an immutable class representing a sequence of characters, while System.Text.StringBuilder is a mutable character-based object that can be used to efficiently build or manipulate strings. StringBuilder provides methods for appending, inserting, and deleting characters in a string.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the Project related questions generaly asked in the interview. Mail to: ana_net1@yahoo.com
Explain me what is .net web service?
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
State the methods used during deserialization and serialization process.
What is exception handling?
What are the providers available with VS.NET ?
How does the generational garbage collector in the .net clr manage object lifetime? What is non-deterministic finalization?
Differences between namespace, class, assembly?
How inheritance works in .net?
What method do you use to explicitly kill a users session? How?
Describe the use of following com+ services jit activation, queued components, object pooling.?
What is the use of design pattern?