Home / CSE MCQs / C#.Net MCQs :: Discussion

Discussion :: C#.Net MCQs

  1. Select output for the following set of code :

    static void Main(string[] args)
     {
         int i, s = 0, a = 1, d;
         i = Convert.ToInt32(Console.ReadLine());
         do
         {
             d = i % (2 * 4);
             s = s + d * a;
         }while ((Convert.ToInt32(i = i / (2 * 4))) != 0 && (Convert.ToBoolean(Convert.ToInt32((a) = (a * 10)))));
         Console.WriteLine(s);
         Console.ReadLine();
     }
    enter i = 342.
  2. A.
    It finds binary equivalent of i
    B.
    It finds octal equivalent of i
    C.
    It finds sum of digits of i
    D.
    It finds reverse of i

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    None. Output : i = 342. s = 526.


Be The First To Comment