Question
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";
a.
1, 2, 4
b.
2, 3, 5
c.
3, 4
d.
2, 5
Posted under C# programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. 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...
Similar Questions
Discover Related MCQs
Q. Which of the following statements will correctly copy the contents of one string into another ?
View solution
Q. The string built using the String class are immutable (unchangeable), whereas, the ones built- using the StringBuilder class are mutable.
View solution
Q. If s1 and s2 are references to two strings, then which of the following is the correct way to compare the two references?
View solution
Q. Which of the following statements about a String is correct?
View solution
Q. Which of the following statement is correct about a String in C#.NET?
View solution
Q. 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"?
View solution
Q. Which statement is correct about following c#.NET code ?
int[] a= {11, 3, 5, 9, 6};
View solution
Q. What is the advantage of using 2D jagged array over 2D rectangular array?
View solution
Q. Which statement is correct about following set of code ?
int[, ]a={{5, 4, 3},{9, 2, 6}};
View solution
Q. Which is the correct way of defining and initializing an array of 3 integers?
View solution
Q. Choose selective differences between an array in c# and array in other programming languages.
View solution
Q. Which of the following string() method are used to compare two strings with each other?
View solution
Q. Choose the base class for string() method :
View solution
Q. Which of the following statement is correct about a string in C#.NET?
View solution
Q. Correct way to find if contents of two strings are equal ?
View solution
Q. Which of the following statements are correct ?
View solution
Q. Which of these operators can be used to concatenate two or more String objects?
View solution
Q. The Method use to remove white space from string?
View solution
Q. What is the String in C# meant for?
View solution
Q. What does the term ‘immutable’ means in term of string objects?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C# programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!