Write a C# program named TestScoreList that accepts eight int values representing student test scores.
Display each of the values along with a message that indicates how far it is from the average.
An example of how the results should be output is as follows:
Test # 0: 89 From average: 6 Test # 1: 78 From average: -5
It also needs to be able to output decimal numbers as well as whole numbers. For example...
Test # 1: 74 From average: 13.375
Code is implemented in c#
first we take 8 integers then we calculate average
then we Display each of the values along with a message that indicates how far it is from the average
using System;
public static class Lab3_2
{
public static void Main(){
int sum=0;
double avg;
int[] a = new int[8];
for(int i=0;i<8;i++)
{
Console.Write("element - {0} : ",i);
a[i] =
Convert.ToInt32(Console.ReadLine());
sum+=a[i];
}
avg=sum/8;
for(int i=0;i<8;i++)
{
Console.Write("Test # {0}: {1} From average: {2}
\n",i,a[i],avg-a[i]);
}
}
}![1 using System; public static class Lab3_2 public static void Main() { int sum=0; double avg; int[] a = new int[8]; for(int i](http://img.homeworklib.com/questions/30d97d40-adfc-11eb-a262-6f3b714d24ce.png?x-oss-process=image/resize,w_560)

Write a C# program named TestScoreList that accepts eight int values representing student test scores. Display...
Write a C++ program named, gradeProcessor.cpp, that will do the following tasks: -Print welcome message -Generate the number of test scores the user enters; have scores fall into a normal distribution for grades -Display all of the generated scores - no more than 10 per line -Calculate and display the average of all scores -Find and display the number of scores above the overall average (previous output) -Find and display the letter grade that corresponds to the average above (overall...
Must be done in C# please! Thanks!
In this assignment you will create a program named Test Scores that displays the average of all tests; average midterm score; average final score; and displays the midterm or final score of a particular student. Create a class level two dimensional integer array named Grades initialized with the following data: 897 242 301 987 116 450 865 128 992 109 88 75 94 70 90 87 81 79 97 79 78 80 92...
Design a function named max that accepts two integer values as arguments and returns the value that is the greater of the two. For example, if 7 and 12 are passed as arguments to the function, the function should return 12. Use the function in a program that prompts the user to enter two integer values. The program should display the value that is the greater of the two. Need Variable lists, Psuedocode, ipo chart, Flow Chart, and a python...
Write a complete C++ program that reads students names and their test scores from an input text file. The program should output each student’s name followed by the test scores and the relevant grade in an output text file. It should also find and display on screen the highest/lowest test score and the name of the students having the highest/lowest test score, average and variance of all test scores. Student data obtained from the input text file should be stored...
Write a program that instantiates an array of integers named scores. Let the size of the array be 10. The program then first invokes randomFill to fill the scores array with random numbers in the range of 0 -100. Once the array is filled with data, methods below are called such that the output resembles the expected output given. The program keeps prompting the user to see if they want to evaluate a new set of random data. Find below...
Write a Python script that allows a user to input three exam scores. Display a congratulatory message if the average exam score across all three is greater than 95%. Your solution should follow these general steps; Obtain the first exam score from the user in the form score/max Example: 93/100 Obtain the second score Obtain the third score Check that the user provided numbers and compute the average test score Display the average If the average was greater than 95%,...
Write a program named FahrenheitToCelsius that accepts a temperature in Fahrenheit from a user and converts it to Celsius by subtracting 32 from the Fahrenheit value and multiplying the result by 5/9. Display both values to one decimal place. For example, if 88.5 degrees is input, the output would be: 88.5 F is 31.4 C Answer in C# (Posting incomplete code i have so far that wont run correctly.) using System; using static System.Console; class FahrenheitToCelsius { static void Main()...
Write a C program that reads a sequence of numbers and display a message 1. The numbers a re red from the standard input. 2. The first number is the length of the sequence (n) followed by n numbers. 3. If n is 0 or negative, the program displays the message "Error_1" followed 4. If the length is shorter than n, it displays "Error_2" followed by a new line 5. The program inspects the list and display one of the...
Write a program named Remainder.java then implement the following method: public static int divisibleBy(int[] arr, int M, int K) this method determines the number of elements in the int array (arr) that are divisible by M but not K. Then write code inside main method to test your method: your main method accepts three numbers from the command argument list, N, M, K, use the first number to create int array with size of N, assign random number between 0...
Write a program named ClassifyScores that classifies a series of scores entered by the user into ranges (0-9, 10-19, and so forth). The scores will be numbers between 0 and 100. Design and implement a program to prompt the user to enter each score separately. If the score is within the correct range, then increment the appropriate range If the score entered is greater than 100, display an error message, ignore the incorrect score, and prompt for the user to...