Course Content
Chapter 1: Computer Basics and Typing Skills
This chapter introduces the fundamental concepts of computers and typing. Students will learn what a computer is, its types, essential hardware and software components, and how to manage files and folders using the Windows operating system. It also focuses on the importance of typing in both English and Hindi and provides a basic introduction to typing tools and practices. These are essential skills for any computer operator working in offices, data entry roles, or administrative jobs.
0/8
Chapter 2: Office Productivity Tools โ€“ MS Word, Excel, PowerPoint
This chapter focuses on the most widely used office software tools โ€“ Microsoft Word, Excel, and PowerPoint. These tools are essential for preparing letters, reports, tables, calculations, charts, and presentations in any office environment. By mastering these tools, students will become job-ready for roles like data entry operator, back-office assistant, and admin executive.
0/7
Chapter 3: Word Processing (Microsoft Word)
This chapter will introduce students to Microsoft Word, a word processing software used for creating, formatting, and editing documents. By the end of this chapter, learners will be able to create professional documents such as resumes, letters, certificates, and reports with proper formatting, layout, and styling. They will also learn useful tools like spell check, bullet points, headers & footers, tables, and how to save or print documents.
0/5
Chapter 4: Spreadsheet (Excel) Essentials
This chapter introduces the basics of spreadsheet software like Microsoft Excel or Google Sheets. You will learn how to enter and manage data, perform calculations using formulas, and visually represent data using charts. These skills are essential for tasks like data entry, analysis, reports, and basic accounting.
0/5
Chapter 5: Creating Presentations (PowerPoint Basics)
This chapter teaches how to create professional-looking presentations using Microsoft PowerPoint or Google Slides. Students will learn to create slides, insert text and multimedia, apply design themes, and set up slide shows. These skills are useful for office meetings, teaching, marketing, and personal projects.
0/5
Chapter 6: Internet and Networking Basics
This chapter introduces the foundational concepts of computer networks and the internet. Students will learn what networks are, how devices connect, and how the internet works. It also covers web browsing, search engines, IP addresses, and safe downloading practicesโ€”skills essential for any modern office or online work environment.
0/5
Chapter 7: Digital Communication and Office Tools
This chapter explores essential tools for digital communication and day-to-day office work. Students will learn how to send professional emails, manage attachments, use digital calendars, and participate in online meetings. It also covers the use of basic office equipment like printers, scanners, and photocopiers.
0/5
Chapter 8: Workplace Readiness and Soft Skills
This chapter focuses on essential skills and practices that make a person job-ready for any office environment. Alongside computer knowledge, employers also expect communication skills, professional behavior, teamwork, time management, and interview preparation from a computer operator or office assistant. This chapter builds those soft skills to ensure overall employability.
0/10
Final Test โ€“ Computer Operator & Office Assistant
This is the final quiz of the course, designed to test everything youโ€™ve learned.
0/1
Computer Operator and Office Assistant โ€“ Complete Course (Job Ready Program)

Lesson 4.4: Basic Formulas and Functions

This lesson introduces you to the most commonly used formulas and functions in spreadsheet software like Excel and Google Sheets. These tools help you perform calculations and analyze data efficiently.


โž• What is a Formula?

A formula is an equation that performs a calculation.

Formulas always start with an equals sign (=).

๐Ÿงพ Example:

sql
=5+3 โ†’ Result: 8
=A1+A2 โ†’ Adds values of cell A1 and A2
=B1*B2 โ†’ Multiplies values of cell B1 and B2

๐Ÿ”ข What is a Function?

A function is a predefined formula that performs a specific task.

๐Ÿ”น Common Functions:

Function Purpose Example
SUM() Adds numbers =SUM(A1:A5)
AVERAGE() Finds average =AVERAGE(B1:B5)
MAX() Finds the highest number =MAX(C1:C10)
MIN() Finds the lowest number =MIN(D1:D10)
COUNT() Counts number of entries =COUNT(E1:E10)

๐Ÿ”„ Order of Operations in Formulas:

Like in math, Excel/Sheets follow the BODMAS rule:

  • Brackets

  • Orders (exponents)

  • Division and Multiplication

  • Addition and Subtraction

๐Ÿงพ Example:

sql
=10+5*2 โ†’ Result: 20 (not 30, because multiplication happens first)

โœ… Real-World Examples:

  • Calculate total marks: =SUM(B2:F2)

  • Find average score: =AVERAGE(B2:F2)

  • Find top scorer: Use =MAX(G2:G10)


๐Ÿ“ Practice Task:

  1. Enter marks of 5 subjects for 5 students.

  2. Use SUM() to calculate total marks for each student.

  3. Use AVERAGE() to find average marks.

  4. Find the highest and lowest total marks using MAX() and MIN().

Scroll to Top