Question
class Program
{
static void Main(string[] args)
{
String []chars = {"z", "x", "y", "z", "y"};
for (int i = 0; i < chars.Length; ++i)
for (int j = i + 1; j < chars.Length; ++j)
if(chars[i].CompareTo(chars[j]) == 0)
Console.WriteLine(chars[j]);
Console.ReadLine();
}
}
a.
zx
b.
xy
c.
zy
d.
yz
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 is output of the given set of Code?
Similar Questions
Discover Related MCQs
Q. Which of these methods of class String is used to separate a substring from a String object?
View solution
Q. Which of these methods of class are used to remove the leading and backward whitespaces?
View solution
Q. Which of the following statements is correct?
View solution
Q. Which of these methods of the class String is used to obtain length of String object?
View solution
Q. Which of these methods is an alternative to getChars() that stores the characters in an array of bytes?
View solution
Q. Which of these methods can be used to convert all characters in a String into a character array?
View solution
Q. Which of these methods of class String is used to extract all the characters from a String object?
View solution
Q. How is a string typically processed?
View solution
Q. How to print \\ on the screen?
View solution
Q. Which of these is used as a default specifier for a member of the class if no access specifier is used for it?
View solution
Q. Which of these is used to access members of class before the object of that class is created?
View solution
Q. Which of these base classes are accessible to the derived class members?
View solution
Q. What is the process by which we can control parts of a program that can access the members of a class?
View solution
Q. Accessibility modifier defined in a class are?
View solution
Q. Choose the statements which are false in nature:
View solution
Q. Which of these access specifiers must be used for main() method?
View solution
Q. What is output for the following code snippet?
View solution
Q. True Statement about ‘ref’ keyword used in C#.NET are?
View solution
Q. Keyword used to define call by reference parameter in C# .NET?
View solution
Q. Which statement is/are correct?
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!