Home / C# Programming / Operators :: Discussion

Discussion :: Operators

  1. Which of the following is the correct output for the C#.NET code snippet given below?

    Console.WriteLine(13 / 2 + " " + 13 % 2); 

  2. A.
    6.5 1
    B.
    6.5 0
    C.
    6 0
    D.
    6 1
    E.
    6.5 6.5

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    No answer description available for this question.


Be The First To Comment