CHAPTER 3 (PART II)
1. Define the term workbook.
= A workbook in Microsoft Excel is a digital file that contains one or more worksheets for
organizing and analysing data. It is used to input, store, and manipulate data in a tabular format.
Workbooks offer features like formulas, charts, and formatting options to perform calculations,
create visual representations, and present data in a structured manner.
2. Rohan is new to Excel. His instructor has asked her to open Excel on her PC and
questioned him about active cell. Help Rohan in identifying the active cell on his
screen.
= The active cell is typically indicated by a thicker border or a highlighted background, allowing
users to easily identify and work with the cell.
3. What is the default alignment of number, text and formula in a spreadsheet.
= The default alignment of number, text and formula in a spreadsheet is as follows:
● Number → Right.
● Text → Left.
● Formula → Right.
4. Sahil has clicked on the cell residing at the intersection of first row and ninth
column. What will be the address of the selected cell.
= If Sahil has clicked on the cell at the intersection of the first row and the ninth column, the
address of the selected cell will be "I1." In Excel, columns are labelled alphabetically, with "A"
representing the first column, "B" representing the second column, and so on. Therefore, the ninth
column is labelled as "I." The row number is denoted numerically, starting from 1 for the first row.
Thus, the selected cell's address will be "I1."
5. How many cells would be there in the cell range [A1:B2]
= There would be 4 cells within the cell range [A1:B2].
6. If = 6-5*2 is entered in a cell, then what will be the cell content?
= If = 6-5*2 is entered in a cell, then the cell content will be – 4.
7. In a spreadsheet software, the formula =A1+$A$2 were entered in cell A3 and
then copied into cell B3. What is the formula copied into B3.
= When the formula "=A1+$A$2" is entered in cell A3 and then copied into cell B3 in a
spreadsheet software, the formula copied into B3 will adjust the cell references based on the
relative position of the copied formula.
In this case, the formula "=A1+$A$2" has a mix of absolute and relative cell references. The
"$" sign before the "A" in "$A$2" indicates an absolute cell reference, meaning that the reference
to cell A2 will not change when the formula is copied to another cell. However, the reference to
cell A1 is not absolute, so it will adjust relative to the new position.
When the formula is copied from cell A3 to B3, the adjusted formula in B3 will be "=B1+$A$2".
The column reference has changed from A to B because the formula was copied horizontally, but
the absolute cell reference to A2 remains the same.
Therefore, in B3, the copied formula becomes "=B1+$A$2".
8. Write down the formula for adding values of cells A1 to A5.
= The formula for adding the values of cells A1 to A5 is :
= sum (A1:A5) or = sum (A1+A2+A3+A4+A5)
9. State the difference between COUNT () and COUNTA () function.
=
COUNT () COUNTA ()
1. The COUNT function is used to count 1. The COUNTA function is used to count all
numbers. non-empty cells.
2. It only counts cells with numeric values and 2. It counts all cells that have any type of data,
ignores any blank cells, text, or cells with non- including numbers, text, logical values (TRUE
numeric data. or FALSE), and even empty strings (""), but it
excludes completely empty cells.
3. For example, if a range contains values like 3. For example, if a range contains values like
5, 10, and 0, the COUNT() function will return "Hello," 15, and "", the COUNTA() function will
3, as it counts the cells with numeric values. return 3, as it counts all non-empty cells.
10. Write down the importance of legend in charts.
= The legend in charts is important as it provides key information about data series or categories,
aiding in data interpretation, clarity, and understanding. It serves as a visual guide, allowing
viewers to associate colours or symbols with specific data and facilitates effective data analysis
and decision-making.
11. What is the difference between a workbook and worksheet.
= The difference between a workbook and a worksheet can be summarized as follows:
Workbook: A workbook is a file that contains multiple worksheets or sheets. It is a container for
organizing and storing data in a spreadsheet application, such as Microsoft Excel or Google
Sheets. A workbook can include one or more worksheets, and each worksheet can be used to
organize data, perform calculations, create charts, and more.
Worksheet: A worksheet, also known as a sheet or spreadsheet, is a single tab or page within a
workbook. It is where the actual data is entered, organized, and manipulated. Worksheets consist
of rows, columns, and cells, forming a grid-like structure. workbook can have multiple worksheets,
each serving as an individual workspace within the larger file.
12. Define the meaning of formula.
= Page no 74, First paragraph (3.8.20)
13. Suggest the appropriate function for the following situations:
a. Selecting the maximum value out of a range A1 to B20.
= MAX (A1 : B20).
b. Calculating average of marks entered in cells E5, F5, G5, H5 and I5.
= AVERAGE (E5 : I5).
14. Akriti has entered 49+30 in a cell. The worksheet is not displaying 79 in the cell.
Instead, 49+30 is getting displayed. Help, Akriti in rectifying the problem.
= To rectify the problem and make the worksheet display the correct result of the addition, Akriti
needs to enter the formula using the appropriate syntax. Instead of entering "49+30" directly into
the cell, she should precede the formula with an equal sign (=) to indicate that it is a mathematical
calculation.
Akriti can do the following to solve the issue :
1. Select the cell where she wants the result to be displayed.
2. Begin the entry with an equal sign (=).
3. Enter the formula for addition using the cell references or values. In this case, the formula would
be "=49+30".
4. Press Enter to confirm the formula entry.
15. For what purpose Pie charts are useful ?
= Pie charts are effective in visually representing data proportions. The size of each slice in the
chart corresponds to the relative value or percentage of the data it represents, making it easy to
understand the distribution at a glance. They allow for quick visual comparison between different
categories or parts. By observing the relative sizes of the slices, viewers can easily identify which
categories are larger or smaller in relation to one another, facilitating comparisons and identifying
trends. Pie charts commonly display the percentage values associated with each category. Pie
charts offer a simple and intuitive representation of data. They are easy to understand, even for
individuals who are not familiar with complex data analysis techniques. The circular shape and
visual appeal of pie charts make them accessible and engaging for a wide range of audiences.
15. Explain the concept of cell referencing along with its various types.
= Cell referencing in spreadsheet applications, such as Microsoft Excel, is the process of referring
to a specific cell or range of cells in a formula. It allows formulas to dynamically adjust and update
based on changes to the referenced cells. Cell referencing plays a crucial role in performing
calculations, data analysis, and creating dynamic relationships between cells.
There are three types of cell referencing in Excel:
1. Relative Cell Referencing: Relative cell referencing is the default type of referencing in Excel.
When a formula is copied or filled to other cells, relative cell references adjust automatically based
on the relative position of the formula and the new location.
2. Absolute Cell Referencing: Absolute cell referencing is used when you want to lock or fix the
reference to a specific cell in a formula. It prevents the referenced cell from changing when the
formula is copied or filled to other cells. An absolute cell reference is denoted by placing a dollar
sign ($) before the column letter and/or row number.
3. Mixed Cell Referencing: Mixed cell referencing is a combination of relative and absolute
referencing. In this type, either the column or the row is fixed, while the other remains relative.
M/Q
1. Name the different components of Ms Excel window.
2. Define – Cell, Column, Rows, Status Bar, Range of cell.
3. What is file handle?
4. Mention the uses of AutoFill.
5. What are the uses of Redo and Undo buttons?
6. What are the rules to enter Function in Ms Excel?
7. Name the different types of Charts the Excel provide.
8. Name the different components of a Chart.
9. Write all the keyboard short cuts.