Question
static void main(String args[])
{
char chars[] = {'a', 'b', 'c'};
String s = new String(chars);
Console.WriteLine(s);
}
a.
a
b.
b
c.
ab
d.
abc
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. What will be the output of the code snippet?
Similar Questions
Discover Related MCQs
Q. Which of these methods of class String is used to remove leading and trailing whitespaces?
View solution
Q. Which of these methods of class String is used to extract a substring from a String object?
View solution
Q. Which of these methods of class String is used to check whether a given string starts with a particular substring or not?
View solution
Q. What is the value returned by the function CompareTo() if the invoking string is less than the string compared?
View solution
Q. Which of these method of class String is used to obtain length of String object?
View solution
Q. Which of these constructors is used to create an empty String object?
View solution
Q. Method used to remove white space from string?
View solution
Q. Which string operation does the below mentioned method define?
public static string Concat(string str0, string str1)
View solution
Q. What does the given code set specifies?
public static int Compare(string strA, string strB)
View solution
Q. Select the operators used for checking the equality in strings:
View solution
Q. Choose the constructor type used to build strings from character array:
View solution
Q. Select the interfaces defined by the string class?
View solution
Q. Select the namespace in which string class is built?
View solution
Q. What are strings in C#?
View solution
Q. Select the correct declaration of the defining array of parameters:
View solution
Q. The modifiers used to define an array of parameters or list of arguments:
View solution
Q. The method in which large or variable number of arguments are handled is known as:
View solution
Q. Which statement is/are correct?
View solution
Q. Keyword used to define call by reference parameter in C# .NET?
View solution
Q. True Statement about ‘ref’ keyword used in C#.NET are?
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!