a) Write a pseudocode which will arrange the elements from the myData data set into the following bins based on their value: Bin 0: 1 to 49, Bin 1: 50 to 99, Bin 2:100 to 149, Bin 3:150 to 199, and Bin 4: 200 to 255 . for each bin find the (1) count, (2) average value, and (3) variance All values are considered 8-bit unsigned. a) Using CCS, implement your pseudocode in the C programming language Print the results to the CCS console in decimal using the specified forma b) Use an online Chi-Square calculator to determine if your sequence is biased or not. c) Submit your C code, copy/paste (or screen capture) of CCS Terminal output using the specified format, a screen capture of your Chi-Square test, and your determination if your sequence is biased or unbiased. Use this format to print your results to the terminal First Name Last Name Current Semester CHW\#3 My seed value is \#seed N, \#,Avg, Variance 0:c0,a0,v0 1: c1,a1,v1 2: c2, a2,v2 3: c3, a3,v3 4: c4, a4,v4 Where cX is the bin count, aX is the bin average, and vX is the bin variance Seed Number Use ASCII value of the first character of your last name in upper case. For example, Noroozi → " N " = ASCII 0×4E