0
0
Excelspreadsheet~20 mins

Histogram and frequency analysis in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Histogram & Frequency Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Calculate frequency distribution using FREQUENCY function
Given the data values in cells A2:A11 and bins in cells B2:B6, which formula entered in C2 and confirmed with Ctrl+Shift+Enter will correctly calculate the frequency distribution?
Excel
Data: A2:A11 = {3, 7, 8, 5, 12, 14, 21, 13, 18, 20}
Bins: B2:B6 = {5, 10, 15, 20, 25}
A=FREQUENCY(A2:A11, B2:B6)
B=COUNTIFS(A2:A11, ">" & B2:B6)
C=COUNTIF(A2:A11, "<=" & B2:B6)
D=FREQUENCY(B2:B6, A2:A11)
Attempts:
2 left
💡 Hint
Remember FREQUENCY(data_array, bins_array) counts how many data points fall into each bin range.
Function Choice
intermediate
1:30remaining
Choose the best function to create a histogram in Excel
You want to create a histogram that groups sales data into ranges and shows counts for each range. Which Excel function is best suited to calculate the counts for each bin?
AAVERAGEIFS
BVLOOKUP
CFREQUENCY
DSUMIFS
Attempts:
2 left
💡 Hint
Think about a function that counts how many values fall into specified ranges.
data_analysis
advanced
1:30remaining
Analyze frequency output array length
If you use the formula =FREQUENCY(A2:A10, B2:B5) in Excel, how many elements will the resulting frequency array contain?
Excel
Data range: A2:A10 (9 values)
Bins range: B2:B5 (4 values)
A4
B10
C9
D5
Attempts:
2 left
💡 Hint
The FREQUENCY function returns one more element than the number of bins.
🎯 Scenario
advanced
1:30remaining
Identify the error in histogram frequency calculation
You entered the formula =FREQUENCY(A2:A20, B2:B10) in cell C2 and pressed Enter. The output shows a single number instead of an array of counts. What is the most likely reason?
AYou forgot to press Ctrl+Shift+Enter to enter it as an array formula.
BThe data range A2:A20 is empty.
CThe bins range B2:B10 contains text values.
DThe formula syntax is incorrect; FREQUENCY requires three arguments.
Attempts:
2 left
💡 Hint
Think about how array formulas behave in older Excel versions.
📊 Formula Result
expert
2:30remaining
Determine the frequency output for mixed data and bins
Given the data in A2:A8: {2, 5, 7, 10, 12, 15, 20} and bins in B2:B4: {5, 10, 15}, what is the output array of =FREQUENCY(A2:A8, B2:B4)?
Excel
Data: 2, 5, 7, 10, 12, 15, 20
Bins: 5, 10, 15
A{2, 3, 1, 1}
B{2, 2, 2, 1}
C{1, 2, 2, 2}
D{3, 2, 1, 1}
Attempts:
2 left
💡 Hint
Count how many data points fall into each bin range: <=5, >5 and <=10, >10 and <=15, >15.