.NET FAQs Unleashed!
 
    
    

Interview Questions on Strings in .NET

What is a String?
How can you display the number 5555 as 0005555 in an output string?
How can you initialize a string from a char[]?
How to format and display a decimal number as a currency?
How to output an int type as a hexadecimal string?
How to display a number in exponential frmat? How to display 10000 as 1E-004?
How to display a number as a percent?
Is String a reference type or a value type? What about char?
What does F2 in ToString(\"F2\") mean?
What does the symbol @ mean before the double quotes of a string?
What is a carriage return?
What is an escape sequence? Why do we use backslash characters with strings?
What is the difference between String and string?
What will the following display "\u0042\u0041\u0044"?


More Interview Questions.....