What Will Be The Output Of The Following C Codep Pre Langcsharp #85
What will be the output of the following C# code?</p> <pre><code class="language-csharp" line="1"> public static void Main() { byte varA = 10; byte varB = 20; long result = varA | varB; Console.WriteLine("{0} OR {1} Result :{2}", varA, varB, result); varA = 10; varB = 10; result = varA | varB; Console.WriteLine("{0} OR {1} Result : {2}", varA, varB, result); } </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Data Types, Variables and Operators - Bit-wise and Conditional Operators - Quiz No.1.