Internal Code: MAS6897
IT Assignment:
In this assignment, you are required to develop TWO C# Console Programs to demonstrate your ability to use C# constructs including input/output via command line, C# primitive and built-in C# types, C# defined Objects, selection and looping statements, methods and various other C# commands. Your program must produce the correct results.
Questions:
1) Create a C# class named RandomGenerator.cs does following functions. You should ask from the user input for display either histogram or the frequency (Hint – Use Switch case or if else). You can decide on how to create methods however, you should call and test the functions in the TestRandomGenerator.cs.
a. Declare an array of dimension 10 (index 0... 9).
b. Generate 50 Random integers in the range 0 ... 9.
c. Store the number of occurrences (count) in the array appropriately.
d. Print a table that would list the numbers and the number of occurrences.
e. Print a histogram for the above