Theoretical Questions
Q1: Importance of IT Tools in Data Processing IT tools (like MS-Excel, Python, R) automate repetitive calculations, reduce human errors, process large datasets quickly, and generate visual reports. Manual analysis is time-consuming and error-prone; computerized analysis provides speed, accuracy, and repeatability.
Q2: Statistics – Definition & Applications Statistics is the science of collecting, organizing, analyzing, interpreting, and presenting data. Applications: Business (sales forecasting), Economics (GDP analysis), Education (student performance), Healthcare (clinical trials).
Q3: Skills for Statistical Data Work
- Data collection: surveys, sensors, databases
- Classification: grouping into categories/frequency tables
- Analysis: applying statistical measures
- Interpretation: drawing meaningful conclusions
- Good data characteristics: accuracy, completeness, relevance, timeliness, consistency
Q4: Statistical Functions in MS Excel Excel provides built-in functions for: AVERAGE, MEDIAN, MODE, STDEV, VAR, COUNT, MAX, MIN, RANK, PERCENTILE, LARGE, SMALL, COUNTIF, SUMIF, AVERAGEIF — making statistical analysis accessible without programming.
---
Dataset: Student Marks (30 Students)
| S.No | Name | Marks | S.No | Name | Marks | |
|---|---|---|---|---|---|---|
| 1 | Aman | 85 | 16 | Simran | 79 | |
| 2 | Priya | 72 | 17 | Deepak | 66 | |
| 3 | Rohit | 91 | 18 | Meena | 90 | |
| 4 | Neha | 60 | 19 | Arjun | 45 | |
| 5 | Vikas | 98 | 20 | Tanvi | 81 | |
| 6 | Riya | 74 | 21 | Kunal | 77 | |
| 7 | Karan | 82 | 22 | Ankita | 69 | |
| 8 | Anjali | 52 | 23 | Sumit | 88 | |
| 9 | Sanjay | 77 | 24 | Divya | 75 | |
| 10 | Pooja | 89 | 25 | Harsh | 63 | |
| 11 | Amit | 65 | 26 | Ishita | 92 | |
| 12 | Sunita | 93 | 27 | Nikhil | 58 | |
| 13 | Dev | 73 | 28 | Kajal | 84 | |
| 14 | Kavita | 58 | 29 | Lokesh | 70 | |
| 15 | Rahul | 86 | 30 | Mansi | 95 |
(Marks stored in column C, rows 2–31. Use C2:C31 in all formulas.)
---
30 Statistical Functions
1. =AVERAGE(C2:C31) → Average marks
2. =MAX(C2:C31) → Highest marks
3. =MIN(C2:C31) → Lowest marks
4. =SUM(C2:C31) → Total marks
5. =COUNT(C2:C31) → Total students
6. =MEDIAN(C2:C31) → Median marks
7. =MODE(C2:C31) → Mode (most frequent)
8. =STDEV(C2:C31) → Standard Deviation
9. =VAR(C2:C31) → Variance
10. =COUNTIF(C2:C31,">75") → Students scoring > 75
11. =COUNTIFS(C2:C31,">=60",C2:C31,"<=80") → Students scoring 60–80
12. =RANK(C2,C$2:C$31,0) [drag down] → Rank of each student
13. =MAX(C2:C31)-MIN(C2:C31) → Range (highest - lowest)
14. =AVERAGE(LARGE(C2:C31,{1,2,3,4,5})) → Average of top 5 marks
15. =LARGE(C2:C31,2) → Second highest mark
16. =SMALL(C2:C31,2) → Second lowest mark
17. =COUNTIF(C2:C31,"<70") → Students scoring < 70
18. =COUNTIF(C2:C31,">80")/COUNT(C2:C31)*100 → % students scoring > 80
19. =SUMIF(C2:C31,">80") → Sum of marks above 80
20. =AVERAGEIF(C2:C31,">70") → Average of marks above 70
21. =LARGE(C2:C31,3) → Third highest mark
22. =SMALL(C2:C31,3) → Third lowest mark
23. =COUNTIF(C2:C31,75) → Students scoring exactly 75
24. =SUMIF(C2:C31,"<"&AVERAGE(C2:C31)) → Sum of marks below class avg
25. =AVERAGEIF(C2:C31,"<70") → Average of marks below 70
26. =COUNTIF(C2:C31,">"&AVERAGE(C2:C31)) → Students above class avg
27. =AVERAGE(C2:C31+5) [Ctrl+Shift+Enter] → New avg after 5 bonus marks
28. =MAX(C2:C31)+3 → New highest after +3 bonus
29. =COUNTIF(C2:C31,"<60")/COUNT(C2:C31)*100 → % students below 60
30. =SUM(LARGE(C2:C31,{1,2,3})) → Total marks of top 3 students