C# Arrays and Strings Mcqs

Our collections of Multiple choice questions and answers focuses on study of C# Arrays and Strings. These topics are chosen from a collection of most authoritative and best reference books on C# Arrays and Strings. Our aim is to prepare an individual for competitive exams like NTS, GAT, ECAT, University and College entrance exams and various tests and job interviews. One should practice our mcqs to assimilate C# Arrays and Strings Topic comprehensively.

  1. Home
  2. »
  3. Languages
  4. »
  5. Programming Languages Mcqs
  6. »
  7. C# Programming Mcqs
  8. »
  9. Arrays and Strings mcqs
  10. »
  11. Page 2

16.
Which of the following statements are true about the C#.NET code snippet given below?

1. String objects cannot be created without using new.
2. Only one object will get created.
3. s1 and s2 both will refer to the same object.
4. Two objects will get created, one pointed to by s1 and another pointed to by s2.
5. s1 and s2 are references to the same object.

String s1, s2; 
s1 = "Hi"; 
s2 = "Hi";

1, 2, 4

2, 3, 5

3, 4

2, 5

17.
Which of the following will be the correct output for the C#.NET code snippet given below?
String s1 = "ALL MEN ARE CREATED EQUAL";
String s2;
s2 = s1.Substring(12, 3); 
Console.WriteLine(s2);

ARE

CRE

CR

REA

18.
Which of the following statements will correctly copy the contents of one string into another ?

String s1 = "String"; String s2; s2 = s1,

String s1 = "String" ; String s2; s2 = String.Concat(s1, s2);

String s1 = "String"; String s2; s2 = String.Copy(s1);

String s1 = "String"; String s2; s2 = s1.Replace();

19.
Which of the following will be the correct output for the C#.NET code snippet given below?
String s1 = "Nagpur";
String s2;
s2 = s1.Insert(6, "Mumbai"); 
Console.WriteLine(s2);

NagpuMumbair

Nagpur Mumbai

Mumbai

NagpurMumbai

20.
If s1 and s2 are references to two strings, then which of the following is the correct way to compare the two references?

S1 is s2

S1 = s2

S1 == s2

S1.Equals(s2)

21.
What will be the output of the C#.NET code snippet given below?
namespace McqsMentorConsoleApplication
{
    class SampleProgram
    {
        static void Main(string[ ] args)
        {
            string str= "Hello World!";
            Console.WriteLine( String.Compare(str, "Hello World?" ).GetType() );
        }
    }
}

0

1

String

System.Int32

22.
Which of the following snippets are the correct way to convert a Single into a String?

1. Single f = 9.8f; 
String s;
s = (String) (f);

2. Single f = 9.8f; 
String s;
s = Convert.ToString(f);

3. Single f = 9.8f; 
String s;
s = f.ToString();

4. Single f = 9.8f; 
String s;
s = Clnt(f);

5. Single f = 9.8f; 
String s;
s = CString(f);

1, 2

2, 3

1, 3, 5

2, 4

23.
Which of the following will be the correct output for the C#.NET code snippet given below?
String s1="Kicit";
Console.Write(s1.IndexOf('c') + " "); 
Console.Write(s1.Length);

3 6

2 5

3 5

2 6

24.
Which of the following is correct way to convert a String to an int?
1. String s = "123"; 
int i;
i = (int)s;

2. String s = "123";
int i;
i = int.Parse(s);

3. String s = "123"; 
int i;
i = Int32.Parse(s);

4. String s = "123"; 
int i;
i = Convert.ToInt32(s);

5.
String s = "123"; 
int i;
i = CInt(s);

1, 3, 5

2, 4

3, 5

2, 3, 4

25.
Which of the following statements about a String is correct?

A String is created on the stack.

Whether a String is created on the stack or the heap depends on the length of the String.

A String is a primitive.

A String can be created by using the statement String s1 = new String,

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

A String is mutable because it can be modified once it has been created.

Methods of the String class can be used to modify the string.

A number CANNOT be represented in the form of a String.

A String has a zero-based index.

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

0

1

2

-1

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

1, 2

2, 3

4, 5

3, 5

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

1, 2, 5

2, 4

1, 3, 4

3, 5

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

1, 3

3, 5

2, 4

1, 2, 4

0Shares
0
Scroll to Top