Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C programming. very basic beginning. Calculate the mean, median and mode of a given array in the following manner: Write three functions mean (), median

C programming. very basic beginning.

Calculate the mean, median and mode of a given array in the following manner:

Write three functions mean (), median () and mode () that calculates the mean, median and mode of an array.

Using these functions write a program that calculates all the three above mentioned values for two different arrays A and B where A is an array that contains the number of hours spent by a person each day for playing video games and B is an array that contains the number of hours spent by a person each day for his studies.

Based on the above-mentioned values that you calculate using these functions compare the values obtained from both the arrays. If all the three values of array A is greater than array B print statement that warns the person to study. If all the three values of array B is greater than array A print statement that praises him for his studies. If all the three values are equal print statement that tells him he is well balanced. If any other issues, print Sorry cant come to an outcome.

Hint: Sort the arrays first.

Example: Let array A be: 4 5 5 2 8 9 Let array B be: 2 3 1 4 8 4 Mean of A is: 5.5 Median of A is: (5+5)/2=5 Mode of A is: 5 Mean of B is: 3.6 Median of B is: (3+4)/2=3.5 Mode of B is: 4 Here Mean, Median and Mode of A is larger than B. Therefore, we print Youre playing more video games you have to spent more time studying. In case if Mean, Median and Mode of A is lesser than B then you print Great, youre spending considerable time in studying

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Mining Concepts And Techniques

Authors: Jiawei Han, Micheline Kamber, Jian Pei

3rd Edition

0123814790, 9780123814791

Students also viewed these Databases questions

Question

Prepare a short profile of Lucy Clifford ?

Answered: 1 week ago

Question

Prepare a short profile of Rosa parks?

Answered: 1 week ago

Question

Prepare a short profile of victor marie hugo ?

Answered: 1 week ago