MCQOPTIONS
Saved Bookmarks
This section includes 17 Mcqs, each offering curated multiple-choice questions to sharpen your C Sharp Programming knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
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); |
| A. | 3 6 |
| B. | 2 5 |
| C. | 3 5 |
| D. | 2 6 |
| Answer» C. 3 5 | |
| 2. |
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; |
| A. | 1, 2, 5 |
| B. | 2, 4 |
| C. | 1, 3, 4 |
| D. | 3, 5 |
| Answer» D. 3, 5 | |
| 3. |
What will be the output of the C#.NET code snippet given below? namespace IndiabixConsoleApplication { class SampleProgram { static void Main(string[ ] args) { string str= "Hello World!"; Console.WriteLine( String.Compare(str, "Hello World?" ).GetType() ); } } } |
| A. | 0 |
| B. | 1 |
| C. | String |
| D. | Hello World? |
| Answer» E. | |
| 4. |
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) |
| A. | 1, 2 |
| B. | 2, 3 |
| C. | 4, 5 |
| D. | 3, 5 |
| Answer» C. 4, 5 | |
| 5. |
Which of the following statement is correct about a String in C#.NET? |
| 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. |
| Answer» E. | |
| 6. |
Which of the following is correct way to convert a String to an int? String s = "123"; int i; i = (int)s; String s = "123"; int i; i = int.Parse(s); String s = "123"; int i; i = Int32.Parse(s); String s = "123"; int i; i = Convert.ToInt32(s); String s = "123"; int i; i = CInt(s); |
| A. | 1, 3, 5 |
| B. | 2, 4 |
| C. | 3, 5 |
| D. | 2, 3, 4 |
| Answer» E. | |
| 7. |
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); |
| A. | 0 |
| B. | 1 |
| C. | 2 |
| D. | -1 |
| Answer» E. | |
| 8. |
Which of the following snippets are the correct way to convert a Single into a String? Single f = 9.8f; String s; s = (String) (f); Single f = 9.8f; String s; s = Convert.ToString(f); Single f = 9.8f; String s; s = f.ToString(); Single f = 9.8f; String s; s = Clnt(f); Single f = 9.8f; String s; s = CString(f); |
| A. | 1, 2 |
| B. | 2, 3 |
| C. | 1, 3, 5 |
| D. | 2, 4 |
| Answer» C. 1, 3, 5 | |
| 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"? |
| 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); |
| Answer» D. String str = "She sells sea shells on the sea-shore"; int i, j; i = str.LastIndexOf("s"); j = str.IndexOf("s", i - 1); | |
| 10. |
Which of the following statements about a String is correct? |
| A. | A String is created on the stack. |
| B. | Whether a String is created on the stack or the heap depends on the length of the String. |
| C. | A String is a primitive. |
| D. | A String can be created by using the statement String s1 = new String; |
| Answer» E. | |
| 11. |
The string built using the String class are immutable (unchangeable), whereas, the ones built- using the StringBuilder class are mutable. |
| A. | 1 |
| B. | |
| Answer» B. | |
| 12. |
If s1 and s2 are references to two strings, then which of the following is the correct way to compare the two references? |
| A. | s1 is s2 |
| B. | s1 = s2 |
| C. | s1 == s2 |
| D. | strcmp(s1, s2) |
| Answer» E. | |
| 13. |
Which of the following statements will correctly copy the contents of one string into another ? |
| A. | String s1 = "String"; String s2; s2 = s1; |
| B. | String s1 = "String" ; String s2; s2 = String.Concat(s1, s2); |
| C. | String s1 = "String"; String s2; s2 = String.Copy(s1); |
| D. | String s1 = "String"; String s2; s2 = s1.Replace(); |
| Answer» D. String s1 = "String"; String s2; s2 = s1.Replace(); | |
| 14. |
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); |
| A. | ARE |
| B. | CRE |
| C. | CR |
| D. | REA |
| Answer» C. CR | |
| 15. |
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. |
| A. | 1, 3 |
| B. | 3, 5 |
| C. | 2, 4 |
| D. | 1, 2, 4 |
| Answer» D. 1, 2, 4 | |
| 16. |
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); |
| A. | NagpuMumbair |
| B. | Nagpur Mumbai |
| C. | Mumbai |
| D. | Nagpur |
| Answer» E. | |
| 17. |
Which of the following statements are true about the C#.NET code snippet given below? String s1, s2; s1 = "Hi"; s2 = "Hi"; String objects cannot be created without using new. Only one object will get created. s1 and s2 both will refer to the same object. Two objects will get created, one pointed to by s1 and another pointed to by s2. s1 and s2 are references to the same object. |
| A. | 1, 2, 4 |
| B. | 2, 3, 5 |
| C. | 3, 4 |
| D. | 2, 5 |
| Answer» C. 3, 4 | |