What Does The Following C Code Set Specifiesp Pre Langcsharp #878
What does the following C# code set specifies?</p> <pre><code class="language-csharp" line="1"> public static int Compare(string strA, string strB) </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Miscellaneous Topics - Introduction of String Formatting - Quiz No.1.
What does the following C# code set specifies?
public static int Compare(string strA, string strB)
Comparison is case and culture sensitive
Two strings A and B are compared with each other
Output is : >0 for (A > B), <0 for (A < B) else ‘0’ for(A=B)
All of the mentioned