C# Programming - Strings
Exercise : Strings - General Questions
- Strings - General Questions
11.
Which of the following statements about a String is correct?
12.
Which of the following statement is correct about a String in C#.NET?
13.
Which of the following will be the correct output for the C#.NET code snippet given below?
String s1 = "Five Star";
String s2 = "FIVE STAR";
int c;
c = s1.CompareTo(s2);
Console.WriteLine(c);
14.
If s1 and s2 are references to two strings then which of the following are the correct ways to find whether the contents of the two strings are equal?
if(s1 = s2)
if(s1 == s2)
int c; c = s1.CompareTo(s2);
if( strcmp(s1, s2) )
if (s1 is s2)
15.
Which of the following statements are correct about the String Class in C#.NET?
- Two strings can be concatenated by using an expression of the form s3 = s1 + s2;
- String is a primitive in C#.NET.
- A string built using StringBuilder Class is Mutable.
- A string built using String Class is Immutable.
- Two strings can be concatenated by using an expression of the form s3 = s1&s2;
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers