Siksha Sarovar

Siksha Sarovar (sikshasarovar.com) is a free educational web application that helps students in India learn programming and prepare for academic and competitive exams. The platform offers structured coding courses (C, C++, Python, Java, HTML, CSS, PHP, Power BI, AI, Machine Learning, Data Science), complete university curriculum notes for BCA/MCA students with previous year question papers, Class 10 and Class 12 CBSE/HBSE school notes, and dedicated preparation material for SSC, UPSC, Banking, Railway and other government exams. Browsing the site is completely free and requires no account. Users may optionally sign in with Google solely to save their learning progress, quiz scores and personal preferences across devices.

Privacy Policy | Terms of Service | Contact Siksha Sarovar | About Siksha Sarovar

v4.0.9 · PWA
Siksha Sarovar logo
Siksha Sarovar
Your Learning Universe

Siksha Sarovar is a free e-learning platform for coding courses, BCA university notes and competitive exam preparation. Optional Google sign-in saves your learning progress across devices.

Initializing knowledge base…
Compiling modules 0%

Practical 9: Statistical Functions in MS-Excel – 30 Operations

Lesson 9 of 14 in the free Statistical Analysis using Excel Lab notes on Siksha Sarovar, written by Rohit Jangra.

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.NoNameMarksS.NoNameMarks
1Aman8516Simran79
2Priya7217Deepak66
3Rohit9118Meena90
4Neha6019Arjun45
5Vikas9820Tanvi81
6Riya7421Kunal77
7Karan8222Ankita69
8Anjali5223Sumit88
9Sanjay7724Divya75
10Pooja8925Harsh63
11Amit6526Ishita92
12Sunita9327Nikhil58
13Dev7328Kajal84
14Kavita5829Lokesh70
15Rahul8630Mansi95

(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