C# Programming :: Strings - C#
-
Which of the following statement is correct about a String in C#.NET?
-
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)
-
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;
-
Which of the following statements are correct?
- String is a value type.
- String literals can contain any character literal including escape sequences.
- The equality operators are defined to compare the values of string objects as well as references.
- Attempting to access a character that is outside the bounds of the string results in an IndexOutOfRangeException.
- The contents of a string object can be changed after the object is created.
-
Which of the following is the correct way to find out the index of the second 's' in the string "She sells sea shells on the sea-shore"?
A.
|
B.
|
C.
|
D.
|
E.
|