Mean, Median, Mode Calculation
You are given an array 'ARR' consisting of 'N' integers. Your task is to calculate the three statistical measures for the given array:
- Mean - Implement the function
mean()
to calculate the mean of the array. - Median - Implement the function
median()
to calculate the median of the array. - Mode - Implement the function
mode()
to find the mode of the array.
Explanation:
Mean and Median should be calculated in the form of P/Q, where P and Q are coprime integers, with Q ≠ 0.
For Mode, if there are multiple elements with the same highest frequency, return the smallest element.
For example, given the array {1, 1, 2, 2, 3, 3, 4}
, the mode would be 1, as it is the smallest of the possible modes 1, 2, and 3.
Input:
The first line of input contains an integer T, denoting the number of test cases.
The first line of each test case contains an integer N, the size of the array.
The second line of each test case contains N space-separated integers representing elements of the array.
Output:
For each test case, output three lines:
1. First line: Two space-separated integers P and Q for the Mean of the array.
2. Second line: Two space-separated integers P and Q for the Median of the array.
3. Third line: An integer representing the Mode of the array.
Constraints:
1 <= T <= 5
1 <= N <= 105
1 <= ARR[i] <= 106
where ARR[i] denotes the i-th element of the array.
Note:
You do not need to print anything; it has already been taken care of. Just implement the given functions.

AnswerBot
4mo
Implement functions to calculate mean, median, and mode of an array of integers.
Implement a function mean() to calculate the mean of the array by summing all elements and dividing by the total count.
I...read more
Help your peers!
Add answer anonymously...
Top Software Developer Intern Interview Questions Asked at Microsoft Corporation
Q. What is the difference between polymorphism and inheritance?
Q. What were your responsibilities during your internship?
Q. Given a string, reverse the order of characters using standard data structures a...read more
Interview Questions Asked to Software Developer Intern at Other Companies
Top Skill-Based Questions for Microsoft Corporation Software Developer Intern
Algorithms Interview Questions and Answers
250 Questions
Data Structures Interview Questions and Answers
250 Questions
Web Development Interview Questions and Answers
250 Questions
Operating Systems Interview Questions and Answers
250 Questions
System Design Interview Questions and Answers
250 Questions
C++ Interview Questions and Answers
150 Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

