Shortcut Navigation:

Form S3 S1 Quiz

Which of the following statements about a String is correct?

Which of the following statement is correct about a String in C#.NET?

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);

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?
  1. if(s1 = s2)
  2. if(s1 == s2)
  3. int c;c = s1.CompareTo(s2);
  4. if( strcmp(s1, s2) )
  5. if (s1 is s2)

Which of the following statements are correct about the String Class in C#.NET?
  1. Two strings can be concatenated by using an expression of the form s3 = s1 + s2;
  2. String is a primitive in C#.NET.
  3. A string built using StringBuilder Class is Mutable.
  4. A string built using String Class is Immutable.
  5. Two strings can be concatenated by using an expression of the form s3 = s1&s2;

Which of the following statements are correct?
  1. String is a value type.
  2. String literals can contain any character literal including escape sequences.
  3. The equality operators are defined to compare the values of string objects as well as references.
  4. Attempting to access a character that is outside the bounds of the string results in an IndexOutOfRangeException.
  5. 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"?