# Nakafa Framework: LLM URL: https://nakafa.com/en/exercises/high-school/snbt/quantitative-knowledge/try-out/set-6/4 Exercises: Try Out - Set 6: Real exam simulation to sharpen your skills and build confidence. - Problem 4 --- ## Exercise 4 ### Question export const metadata = { title: "Problem 4", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/23/2025", }; From the data , , , , , , , which statements are true? 1. Median . 2. Range . 3. Range median . 4. Mean . ### Choices - [ ] $$(1)$$, $$(2)$$, and $$(3)$$ ONLY are correct. - [x] $$(1)$$ and $$(3)$$ ONLY are correct. - [ ] $$(2)$$ and $$(4)$$ ONLY are correct. - [ ] ONLY $$(4)$$ is correct. - [ ] ALL choices are correct. ### Answer & Explanation export const metadata = { title: "Problem 4 Solution", authors: [{ name: "Nabil Akbarazzima Fatih" }], date: "12/23/2025", }; Sort the data from smallest to largest: Number of data points . #### Statement 1 Analysis The median is the -th value. The -th value is . Statement is **CORRECT**. #### Statement 2 Analysis The range is the difference between the maximum and minimum values. Statement is **INCORRECT** (should be , not ). #### Statement 3 Analysis Difference between range and median: Statement is **CORRECT**. #### Statement 4 Analysis The mean () is the sum of all data divided by the number of data points. The value is not equal to . Statement is **INCORRECT**. #### Conclusion The correct statements are ** and **. ---