4 Science Notes
4 Science Notes
4 Science Notes
Introduction to Excel
Excel Terminology
Columns – refers to the letters A,B,C …. On the top of the worksheet and they run from top to
bottom.
Rows – refers to the numbers 1,2,3…. On the left side of the worksheet and they run from left to
right.
Cells – refers to the ‘boxes’, each cell is identified by its cell address which is made up of the column
letter followed by the row number, eg B6, D89 etc…
Active Cell – this is the cell in a worksheet in which you are able to type text into. It is usually
highlighted with darker lines.
Autofill handle
The spreadsheet below shows the amount of money spent on various items (snacks, cake, lunch &
pies) for a given week.
The following formulae can be used in cell G2 to calculate the total.
=B2+C2+D2+E2+F2
=sum(B2:F2)
To calculate the sum for cells G3, G4 & G5 you can simply copy the formula from G2 and
paste it or you can use the Autofill handle.
In cell G2 you can also highlight the range B2:F2 and then click on the autosum icon.
In cell B6 you can use the same methods described above to generate the formula.
o Eg = sum(B2:B5)
In cell B7 you can use =MAX(B2:B5), then copy and paste to get the other values.
In cell B8 you can use =MIN(B2:B5) ), then copy and paste to get the other values.
In cell B9 you can use =AVERAGE(B2:B5) ), then copy and paste to get the other values.
In cell H2 you can use =(G2/$G$6)*100, then copy and paste to get the other values. You
would notice that in G6, the $ was used in the formula. The use of this symbol in a formula
is called Absolute Cell Addressing, ie, it causes part of a formula to remain as a constant
when you copy and paste the formula.
To change cells H2 : H5 to zero decimal places, highlight the cells, right click, select format
cells, choose the tab that says Number, then select number, then change to zero decimal
places and click OK.
In cell A11 the formula = today() was used to print the current date.
In cell A12 the formula = now() was used to print the current date and time.
The symbol used for multiplication is * Eg =G9 * G8
The symbol used for division is / Eg =G9 / G8
The symbol used for subtraction is - Eg =G9 - G8
Practice Activity : Using the spreadsheet that I have sent you similar to the one
below, fill in all the empty cells with appropriate formulae. Save your
spreadsheet on your flash drive using the following naming convention
yourfirstname Practice 1. Bring it to class on Monday 8th October 2018.
Nb… if you encounter any problems, let me know in class and I will assist. However, make every
effort to complete it at home. Refer to the notes, all the solutions are there.
October 8, 2018
Formatting the Excel worksheet.
Sometimes you may be required to format your spreadsheet with
headings for clarity. For example, if you have a header named
‘Allowance’ and it is further divided into three categories – travel,
food & drink. To accomplish this you would first need to insert the
word ‘Allowance’ in an appropriate position. Then in the row below,
insert the various allowances (travel, food & drink) in three separate
cells. Then highlight the cell containing the label ‘Allowance’ plus the
two other cells above the other allowance. Click on the merge and
center icon to complete the task.
To insert borders in the cells, highlight the relevant cells, then click
on the border icon, select the type of borders that you need.
Assignment: Using the given document below, use Excel to create
the document.
Peripheral Device.
Input devices
List examples and explain what they are used for.
Mouse
Keyboard
Joystick
Touchpad
Lightpen
Touch screen
Graphic tablet
Webcam/camera
MICR (Magnetic Ink Character Reader) ( banks & cheques)
OMR (Optical Mark Reader) (multiple choice papers)
OCR (Optical Character Reader) (converts written text into digital
text)
Barcode scanner/reader
Digital camera
Microphone
Biometric systems
Definitions to remember
Input – the process of sending data or instructions to the computer.
Output devices
These are devices that allows the computer to send data to the user.
Examples of Output devices are
Monitor/screen
Speaker
Printer
Plotter
Projector
Headset
Storage Devices
These are devices that can be used to store data which can be used
at a later time. It should be noted that there are storage devices that
are internal and external to the computer.
Internal – hard drive, sim card etc.
External devices
Flash drive
Cd’s, DVD’s, SD Card, magnetic tapes, external hard drive
Magnetic disks, floppy disks
Hardware
Refers to all the physical components of the computer that you can
see and touch.
RAM
Characteristics of RAM (Random Access Memory)
Volatile- data is lost when the computer loses power or switched off.
Data stored in RAM is temporary.
Made on a chip
Data is accessed Randomly.
ROM
Characteristics of ROM ( Read only memory)
Non volatile – data is not lost when the computer is switched off
Data is said to be permanent.
Made on a chip
Accessed Randomly.
(next day, continue with types of ROM)
Completed types of ROM from handout.
Travel allowance
=IF(C4="M",D4*$G$38,IF(C4="AM",D4*$G$38,0))
Entertainment allowance
=IF(C4="M",D4*$G$39,IF(C4="AM",D4*$G$39,0))
January 7, 2019 ( Term 2, Form 4)
Problem Solving (Programming)
Characteristics of algorithms.
1. The number of steps must be finite.
2. The steps must be precise
3. The steps must be unambiguous
4. The steps must have a flow of control from one process to another.
5. The steps must terminate.
6. The steps must lead to an OUTPUT.
Problem Stmt.2
Calculate and print the average of three numbers.
Develop an IPO chart and an algorithm to illustrate the problem statement.
Algorithm
Start
Enter three numbers (num1, num2, num3)
Calculate the average (num1+num2+num3)/3
Print the average.
End.
Algorithm
Start
Step 1 – Enter the name of the item
Step 2 – Enter the price of the item
Step 3 – Calculate the vat on the item (vat = price * 0.15)
Step 4 – calculate the new price (price + vat)
Step 5 – Print the name of the item
Step 6 – print the amount of vat charged
Step 7 – print the new price of the item.
End.
Problem statement 2.
A customer pays a monthly fee of $37.50 for the telephone service and $3.50 per minute for
long distance calls. Input the number of minutes for a long distance call. Calculate and print
the total bill.
Algorithm
Start
Step 1 – Enter the number of minutes
Step 2 – Calculate the total bill (monthly fee + (no. of mins * 3.5))
Step 3 – Print the total bill.
End.