Cp Review Questions
Cp Review Questions
A spreadsheet is a work area in a spreadsheet made up of rows and columns while a file is a
collection of the same saved under the same time
2. The table component of a spreadsheet is used to manage related data in a worksheet list.
4. An electronic spreadsheet is a digital tool used for organizing, analyzing, and storing data in
a tabular form. It consists of a grid of cells arranged in rows and columns, which can contain
numbers, text, or formulas
1. Microsoft Excel
2. Google Sheets
3. LibreOffice Calc
4. Apple Numbers
5.The "1-2-3" in Lotus 1-2-3 represented the three core components of the software:
1. Speed and Efficiency: Electronic spreadsheets can perform complex calculations and
data analysis much faster than manual methods. Formulas and functions can automate
repetitive tasks, saving time and reducing errors.
2. Accuracy: The risk of human error is significantly reduced in electronic spreadsheets.
Formulas ensure accurate calculations, and built-in error-checking features can help
identify and correct mistakes.
3. Flexibility and Adaptability: Electronic spreadsheets are highly flexible. You can easily
modify, rearrange, and update data. You can also create various types of charts and graphs
to visualize data in different ways.
4. Data Storage and Retrieval: Electronic spreadsheets allow you to store large amounts
of data in a compact and organized manner. Data can be easily retrieved, sorted, and
filtered, making it easier to find specific information.
5. Collaboration and Sharing: Electronic spreadsheets can be shared and collaborated on
with others. Multiple users can work on the same spreadsheet simultaneously, making it
easier to work together on projects
8. The Name Box displays the address of the current cell, while the Formula Bar displays the
contents of the current cell.
9. To move from cell G29 to A1 in a single keystroke, you can press Ctrl+Home.
1. If you have created a desktop shortcut for Excel 2013, simply double-click on the
shortcut icon to open the program.
Formulas
User-defined: You create them yourself by combining operators, cell references, and
constants.
Customizable: You can tailor them to specific calculations.
Functions
Key Points:
Formulas can contain functions: You can use functions within formulas to create more
complex calculations.
Functions simplify calculations: They save time and reduce the risk of errors by
automating common tasks.
=$F$10+$G$20
By adding the dollar signs ($) before both the row and column references, we make the reference
absolute. This means that when the formula is copied or moved to another cell, the reference to
cells F10 and G20 will remain fixed, regardless of the new location.
13. the formula=A1+C2 is initially typed in cell D1. how will it apprear when copied to cell E1
=B1+D2
When you copy a formula from one cell to another, the relative cell references adjust to their new
position. In this case:
14. Worksheet and Workbook are two fundamental concepts in spreadsheet applications like
Microsoft Excel or Google Sheets.
Worksheet:
Contains a grid of rows and columns where you input and organize data.
Workbook:
Allows you to organize different sets of data and analysis within a single file.
15. state the effect of pressing each of the following keys on the cell pointer.
b) Shift+tab
c) Ctrl+home
a) Right arrow key: Moves the cell pointer one cell to the right.
c) Ctrl+Home: Moves the cell pointer to the top-left cell of the worksheet (cell A1).
Core Concepts
1. Variables: These are containers that store data. They can hold numbers, text, or other
values.
2. Data Types: These define the kind of data a variable can hold. Common data types
include integers, floating-point numbers, strings, and booleans.
3. Operators: These are symbols used to perform operations on variables and values. They
include arithmetic operators (+, -, *, /), comparison operators (==, !=, <, >, <=, >=), and
logical operators
1
(&&, ||, !).
4. Control Flow: This determines the order in which instructions are executed. It involves:
5. Conditional Statements: These allow you to make decisions based on conditions (e.g.,
if-else statements).
6. Loops: These allow you to repeat a block of code multiple times (e.g., for loops, while
loops).
7. Functions: These are reusable blocks of code that perform specific tasks. They can take
inputs, process them, and return outputs.
8. Arrays: These are collections of data items of the same type, stored in contiguous
memory locations.
9. Algorithms: These are step-by-step procedures for solving a problem.
There are many programming languages, each with its own strengths and weaknesses. Some of
the most popular ones include:
Python: Known for its simplicity and readability, often used for data science, machine
learning, and web development.
Java: A versatile language used for a wide range of applications, from enterprise
software to Android apps.
JavaScript: The language of the web, used for creating interactive web pages and web
applications.
C++: A powerful language used for system programming, game development, and high-
performance applications.
C#: A general-purpose language developed by Microsoft, often used for Windows
applications and game development
17. define each of the following terms as use in spreadsheets. a) cell b) row
c) column
18. how to close a Microsoft Excel workbook without exiting the entire
application
1. Click on the "Close" button: Look for the small "X" button in the top-
right corner of the workbook window.
After closing the workbook, Excel will remain open, and you can continue
working on other open workbooks or create new ones.
=R20C7
In R1C1 format, R stands for row and C stands for column. So, G20 would be
represented as R20C7, indicating row 20, column 7.
20. define the term workbook template. explain how you would start a
spreadsheet template in Microsoft excel
2. Save as a Template:
21. state four types of data entries in spreadsheets and explain each one of
them
1. Text Data:
It's used for labels, titles, descriptions, and any other textual
information.
2. Numeric Data:
It's used for tracking deadlines, scheduling events, and analyzing time-
series data.
These are not directly entered but are calculated based on other data
in the spreadsheet.
In spreadsheet software like Excel, cell references determine which cells are
used in a formula. There are two main types: relative and absolute
references.
In the context of spreadsheets, a range refers to a group of contiguous cells. It's defined by
its starting cell and ending cell, separated by a colon (:).
For example, the range "A1:C5" refers to the group of cells that starts at cell A1 and ends at cell
C5, including all cells in between.
Ranges are commonly used in formulas and functions to perform calculations on a specific set of
cells. For instance, you might use the SUM function to add up all the values within a particular
range.
24. A COUNT function returns the number of cells in a range that contains
values.
25. The OR logical function returns true if one of the arguments is true, while
the AND logical function returns true only if both arguments are true.
26. The NOW function returns the current date and time.
27. The MAX function returns the maximum value in a range of cells.
o Equal to (=)
o Addition (+)
o Subtraction (-)
o Multiplication (*)
o Division (/)
29. the formula $A1+b$1 was entered in cell c1. how would the formula
appear if copied to F2
=$A2+b$2
Explanation:
b$1: The $ before 1 makes the row reference absolute, but the lack of
a $ before b makes the column reference relative, so it will increment.
1. Identify the cells: Determine the cells that contain the numbers you
want to calculate.
+ for addition
- for subtraction
* for multiplication
/ for division
Example: To add the values in cells A2 and B2, you would enter the
following formula in cell C2: =A2+B2
1. Protecting a Worksheet:
Unlock Editable Cells: Select the cells you want users to be able to
edit. Right-click on the selected cells and choose "Format Cells." In the
"Protection" tab, uncheck the "Locked" box.
Allow Specific Actions: Check the boxes for the actions you want
users to be able to perform (e.g., format cells, sort, filter, etc.).
3. VBA (Advanced):
Unlock and Lock the Worksheet: The macro can unlock the
worksheet, allow specific actions, and then re-lock it.
2. Set the Print Area: Go to the "Page Layout" tab and click on "Print
Area."
3. Set Print Area to Chart: Choose "Set Print Area" and then click on
the chart again to confirm.
5. Adjust Page Setup (Optional): You may need to adjust the page
orientation, margins, and scaling to fit the chart on the page.
2. Choose "Print Chart": Select this option to print the chart directly.
Printing a Worksheet
Single Sheet: You print a single sheet of data within the workbook.
Page Setup: You can adjust page orientation, margins, scaling, and
other settings for the individual worksheet.
Faster Process: Generally, printing a single worksheet is quicker than
printing an entire workbook.
Printing a Workbook
Multiple Sheets: You print all or selected sheets within the workbook.
Page Setup: You can set global page setup options for the entire
workbook.
36. In addition to worksheets and workbooks, you can also print the following
elements in a spreadsheet:
Page Headers and Footers: You can print custom headers and
footers that include page numbers, dates, times, or other text.
Print Area: You can define a specific print area within a worksheet and
print only that area.
37. A spreadsheet accepts user data in rows and columns and allows the
user to manipulate the data mathematically.
39. A Name Box shows the position of the current cell in the worksheet.
=SUM( A1:C6)
44. the function = MAX (A1:F10) can be made absolute by typing it as ______
=MAX($A$1:$F$10)
By adding dollar signs ($) before both the row and column references, we
make the reference absolute. This means that when the formula is copied or
moved to another cell, the reference to cells A1 and F10 will remain fixed,
regardless of the new location.
46. Freezing panes makes some rows and columns to be locked against
scrolling while hiding columns makes the affected columns to be hidden
from user view on the screen.
47. Two common ways to complete data entry into a cell in a spreadsheet
are:
1. Direct Entry:
o Click on the cell: Select the cell where you want to enter data.
o Type the data: Use the keyboard to input the desired text,
number, or formula.
o Press Enter or Tab: This confirms the entry and moves the
cursor to the next cell.
o Click on the cell: Select the cell where you want to enter data.
o Click on the Formula Bar: This is the bar located above the
worksheet where the cell's contents are displayed.
o Press Enter: This confirms the entry and updates the cell.
48. Microsoft Excel determines that an entry is a formula by checking for the
equal sign (=) at the beginning of the input.
49. Here are two ways to clear the contents of a cell in Excel:
2. Press the Delete Key: This will remove the contents of the cell,
leaving the formatting intact.
2. Go to the "Home" Tab: Click on the "Home" tab in the Excel ribbon.
3. Click the "Clear" Button: In the "Editing" group, click on the small
arrow next to the "Clear" button.
4. Choose "Clear Contents": This will remove the contents of the cell
without affecting the formatting.
50. To copy a formula using absolute cell referencing, follow these steps:
To make a cell reference absolute, add a dollar sign ($) before the
column letter and/or row number.
Click and drag the fill handle (the small square in the bottom right
corner of the cell) to the cells where you want to copy the formula.
Example:
Let's say you have a formula in cell C2: =$A$1*B2. This formula multiplies the value in cell A1
(an absolute reference) by the value in cell B2 (a relative reference).
When you copy this formula to cell C3, the formula in C3 will be: =$A$1*B3.
As you can see, the reference to A1 remains fixed (absolute), while the reference to B2 adjusts to
B3 (relative).
1. Open the Worksheet: Make sure the worksheet you want to print is
open in Excel.
2. Go to the "Page Layout" Tab: Click on the "Page Layout" tab in the
Excel ribbon.
4. Preview the Print: To see how the worksheet will look when printed,
click on the "Print Preview" button in the same group.
5. Print the Worksheet: Once you're satisfied with the preview, click on
the "Print" button to print the worksheet in landscape orientation.
o Click on the row number where you want to insert a new row.
This will highlight the entire row.
2. Insert Rows:
3. New Row Inserted: A new row will be inserted above the selected
row.
Copying Data
Creates a Duplicate: Creates a copy of the original data in a new
location.
Moving Data
Shifts Data: Moves the original data from one location to another.
Filter and Hide are two tools in Excel that allow you to manipulate the
visibility of data within a worksheet, but they function differently:
Filter
Data remains intact: The hidden data still exists in the worksheet
and can be restored by removing the filter.
Dynamic view: You can quickly switch between different filtered views
of the data.
Hide
Data still exists: The hidden data still exists in the worksheet, but it's
not visible until it's unhidden.
Static view: Once data is hidden, it remains hidden until it's
unhidden.
While Excel itself doesn't have a built-in form creation tool, it integrates
seamlessly with Microsoft Forms, a powerful tool for creating surveys,
quizzes, and data collection forms.
1. Column Chart:
2. Line Chart:
Best for: Tracking changes in data points over time, identifying trends,
and comparing multiple data sets.
ifferent types of charts are used to visualize different kinds of data, such as:
Column Charts: Used to compare values across categories.
58. Subtotals in Excel are a powerful tool for summarizing data within a
worksheet. They allow you to group and categorize data based on specific
criteria and then calculate summary statistics for each group.
How it works:
1. Organize your data: Ensure your data is sorted by the column you
want to group by (e.g., region, product category, etc.).
2. Insert Subtotals:
3. Define Subtotals:
1. Number Format:
2. Currency Format:
o This format displays numbers with a currency symbol (e.g., $, €,
£) and a specific number of decimal places.
o It's ideal for financial data like prices, costs, and revenue.
o You can choose the currency symbol and decimal places based
on your regional settings or specific requirements.
3. Percentage Format:
1. Select the Text: Click and drag your cursor over the text you want to
resize.
2. Open the Font Size Dropdown: Look for the font size dropdown box
on the Home tab of the ribbon. It usually displays the current font size
(e.g., 11).
3. Choose a New Size: Click on the dropdown arrow and select the
desired font size from the list. You can also type a specific font size
directly into the box.
65. The error message is the text message that is displayed on the screen
when a wrong value is entered in a validated cell.
66. Examples of sorted lists include the telephone directory and the
dictionary.
o The data you want to filter must be clearly defined and organized
in a specific range of cells. This range can be selected manually
or named for easier reference.
2. A Criteria Range:
o This range should have the same column headers as the data
range to establish a clear connection between the criteria and
the data.
o The criteria can be defined using various operators, logical
functions, and wildcards to specify complex filtering conditions.
69. Sorting a List Using Two Columns (Class Stream and Average Marks)
Steps:
o Click and drag your mouse to select the entire data range,
including headers.
6. Click OK:
Steps:
o Click on the filter arrow in the header of the column you want to
filter (e.g., "Average Marks").
o Click "OK."
70. One advantage of the filter over autofilter is that it allows you to apply
multiple criteria to filter your data.
This means you can filter based on multiple conditions, such as filtering for
values greater than a certain amount and also containing a specific text
string. Autofilter, on the other hand, is limited to filtering based on a single
criterion per column.
71. A line chart represents trends in data while a pie chart represents the
percentile proportion of various elements in a whole.
72. A read-only workbook does not allow a user to edit or modify its
contents.
75. When creating a chart, its data series can be either in the rows or
columns of the data range.
3. Pie Chart: Used to show the proportion of each category to the whole.
o Click and drag your mouse to select the range of cells containing
your data.
3. Insert a Chart:
o Excel:
o Google Sheets:
Select "Chart."
o Chart Title: Add a clear and concise title to describe the chart's
purpose.
o Axis Labels: Label both the x-axis and y-axis with appropriate
names.
o Adjust the font size, font style, and color of text elements.
1. Click on the Chart: This will activate the Chart Tools on the Ribbon.
4. Select "Legend": Choose the desired position for the legend (top,
right, bottom, or left).
Adding a Data Table to an Existing Chart
1. Click on the Chart: This will activate the Chart Tools on the Ribbon.
4. Select "Data Table": This will add a data table below the chart,
displaying the exact values used to create the chart.