Write a program to find the total and average of a set of numbers entered by a
user. The following provides additional details on how the program should work:
• The program should prompt the user how many numbers they want o
process.
• Once user input is obtained, user will be asked to enter the numbers
used to calculate the total and average repeatedly. (Data validation
must be performed to ensure that the user input is between 1 to 100
inclusive)
• Finally, the total and average calculated will be displayed to the user.
Create a method named getCircleDiameter that takes a radius of double type as the parameter. The method should return the diameter of a circle. To compute the diameter of a circle, multiply the radius by 2.
Create a class named Account with an instance variable named account_number. Make this class a member of the Accounts namespace.
1. Write a program in C# Sharp to create a List of numbers and display the numbers greater than 80 as output.
Test Data :
The members of the List are :
55 200 740 76 230 482 95
Expected Output :
The numbers greater than 80 are :
200
740
230
482
95
2.Write a program in C# Sharp to find the positive numbers from a list of numbers using two where conditions in LINQ Query.
Expected Output:
The numbers within the range of 1 to 11 are :
1 3 6 9 10
1. Write a program in C# Sharp to show how the three parts of a query operation execute.
Expected Output:
The numbers which produce the remainder 0 after divided by 2 are :
0 2 4 6 8
Create an enumeration named month that hold the values for the months of the year. Starting with January equal to 1.write a program that prompts the user a month's integers convert user's entry to a month's values,and display it
Write a program in C# Sharp to display the name of the days of a week.
Expected Output:
Sunday
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
Write a program in C# Sharp to find the positive numbers from a list of
numbers using two where conditions in LINQ Query.
Expected Output:
The numbers within the range of 1 to 11 are :
1 3 6 9 10
Write a program in C# Sharp to show how the three parts of a query
operation execute.
Expected Output:
The numbers which produce the remainder 0 after divided by 2 are :
0 2 4 6 8