Arrays And Strings In C Sharp - Study Mode
[#51] Correct way to find if contents of two strings are equal?
Correct Answer
(C) if (strcmp (s1 ,s2))
[#52] Which of these methods can be used to convert all characters in a String into a character array?
Correct Answer
(C) TocharArray()
[#53] Which of these methods returns the string such that some characters which are specified to be removed from the end of strings are removed from string by mentioning the number of characters to be removed?
Correct Answer
(A) Trim()
[#54] To perform comparison operation on strings supported operations are . . . . . . . .
Correct Answer
(D) All of the mentioned
[#55] Select the correct declaration of the defining array of parameters.
Correct Answer
(D) void fun(param int[] x)
{
}