Home / C# Programming / Strings - C# :: General Questions

C# Programming :: Strings - C#

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

  2. A.
    A String is mutable because it can be modified once it has been created.
    B.
    Methods of the String class can be used to modify the string.
    C.
    A number CANNOT be represented in the form of a String.
    D.
    A String has a zero-based index.
    E.
    The System.Array class is used to represent a string.

    View Answer

    Workspace

    Discuss Discuss in Forum


  3. 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)

  4. A.
    1, 2
    B.
    2, 3
    C.
    4, 5
    D.
    3, 5

    View Answer

    Workspace

    Discuss Discuss in Forum


  5. 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;

  6. A.
    1, 2, 5
    B.
    2, 4
    C.
    1, 3, 4
    D.
    3, 5

    View Answer

    Workspace

    Discuss Discuss in Forum


  7. 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.

  8. A.
    1, 3
    B.
    3, 5
    C.
    2, 4
    D.
    1, 2, 4

    View Answer

    Workspace

    Discuss Discuss in Forum


  9. 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"?

  10. A.
    String str = "She sells sea shells on the sea-shore";  int i; i = str.SecondIndexOf("s");
    B.
    String str = "She sells sea shells on the sea-shore";  int i, j; i = str.FirstIndexOf("s");  j = str.IndexOf("s", i + 1);
    C.
    String str = "She sells sea shells on the sea-shore";  int i, j; i = str.IndexOf("s");  j = str.IndexOf("s", i + 1);
    D.
    String str = "She sells sea shells on the sea-shore";  int i, j; i = str.LastIndexOf("s");  j = str.IndexOf("s", i - 1);
    E.
    String str = "She sells sea shells on the sea-shore";  int i, j; i = str.IndexOf("S");  j = str.IndexOf("s", i);

    View Answer

    Workspace

    Discuss Discuss in Forum