Well, that's just a simple level 100 quiz aiming to imprint "standard random number generators are not really random" program to those who still lack it. What will produce the following C# snippet? System.Random rnd = new System.Random(12345); System.Random rnd2 = new System.Random(12345); for (int i=0; i<1000; i++) if (rnd.Next
...