You are on page 1of 3

Write the format of the functions used in MS Excel to

perform the following tasks


Question 1

To calculate the average of 82, 67, 80, 74 and 95.

Answer

=AVERAGE(82,67,80,74,95)

Question 2

To find the highest value of the cell references from D3 to K3.

Answer

=MAX(D3:K3)

Question 3

To calculate the sum of the first five multiples of 7.

Answer

=SUM(7,14,21,28,35)

Question 4

To determine the lowest value of the cell references from A4 to A12.

Answer

=MIN(A4:A12)

Question 5

To find the sum of all the prime numbers from 1 to 10.

Answer

=SUM(2,3,5,7)

Question 6
To find the arithmetical mean of the cell references from E4 to K4.

Answer

=AVERAGE(E4:K4)

Explain the meaning of the following functions

Question 1

=SUM (C5:H5)

Answer

This function calculates the sum of the cell references from C5 to H5.

Question 2

=AVERAGE (K12:K50)

Answer

This function calculates the average of the cell references from K12 to K50.

Question 3

=COUNT (B15:B35)

Answer

This function counts the number of cells in the range of cells from B15 to B35.

Question 4

=MAX (A4:A14)

Answer

This function finds the highest value among the cell references from A4 to A14.

Define the following


Question 1
Relative Referencing

Answer

In Relative Referencing, the address of the cells is specified in a way that when the formula
is copied to a new cell, the corresponding cell address changes with reference to the new
cell address.=A1+A2 is an example of Relative Referencing.

Question 2

Absolute Referencing

Answer

In Absolute Referencing, the address of the cells is specified in a way that it remains
constant when the formula is copied to a new cell. To keep the cell value absolute apply the
'$' sign. =$A$1+$A$2 is an example of Absolute Referencing.

Question 3

Mixed Referencing

Answer

Mixed Referencing is a combination of Relative and Absolute reference. In this type of


reference, either row or column has to remain fixed. =$A1+A$2 is an example of Mixed
Referencing.

You might also like