ยท Display the number of correct responses.
An example of the program being executed is shown below. Use yellow to indicate error messages, and green to indicate correct responses and the final results.
The random byte-sized value can be generated using the random number generator. In the code shown below, the random number generator is named rndGen, and the hex value is named byHex.
byHex = (byte)rndGen.Next(256);
The user will input their binary value as a string of 1's and 0's. The string (sInput) can be converted to a byte by the following code:
byInput = Convert.ToByte(sInput, 2);
I have zero clue, what to do...help me pls...