Electronic Spread Sheet CW Notes - Answers
Electronic Spread Sheet CW Notes - Answers
C/W QUESTIONS
1. I have bought few clothing items from different vendors in a city. I have
bought same type of clothing items from different showrooms or vendors.
Now I need to know the total quantity bought from each vendor in my order.
Which of the following spreadsheet feature will be used to find the total
quantity of each vendor?
2. Statement I: The data from the consolidation ranges and target range are
saved when you save the worksheet.
Statement II. If you later open a worksheet in which consolidation has been
defined, this data will not be available again
3. In Spreadsheets,
Statement II: The text in the labels must be identical, so that rows or columns
can be accurately matched.
Statement III. If the row or column label does not match any that exist in the
target, range it will be appended as a new row or column.
4. Rohan has 50,000 that he wants to invest in two mutual for one year. Fund
A is a low risk fund with 18% interest rate and Fund B is a higher risk fund
with 21% interest rate. Which feature of spreadsheets (calc) will help him to
decide.
6.Raj has created a worksheet where he has added all the information of his
employees. He wants every employee to go through the worksheet and update
their address and phone number, if required. He also would like to know the
changes done by his employees. Which feature of spreadsheet he should
enable to see the changes made by his employees?
d. Track changes
d.Solver
10.If you are continually working with the same range, then you may give a
name to the range using Define range option under Data Menu.
11. Spreadsheet software allows the user to share the workbook and place it in
the networklocation where several users can access.
13. What is a Record Changes feature in Open Office Calc? How to turn ON
this feature
Record Changes feature is used to track what data was changed, when the
changes was made, who made the change and in which cell the change has
occurred.
14. Suman wants to share her worksheet with others but she wants to protect
her worksheet so that no one can make unnecessary changes. Help her to find
such option.
Edit>Protect Document
15.If you want to use a shared worksheet in unshared mode, you need to
_______________.
d. None of these
16.Original author of the worksheet can accept or reject changes made by the
users.
a. TRUE b. FALSE
17.During the conflicts resolving process, can other user save the shared
worksheet? YES / NO
1. MULTIPLE OPERATION
Multiple Operation is a planning tool for “What –if “questions, but it is different
from Scenario.
It is very useful tool that allows you to calculated different results without entering
the values and formulas separately.
Linking spreadsheet data enables you to keep the information updated without
editing in multiple locations.
The ability to create links eliminates the need of having identical data entered and
updated in multiple sheets.
3. Define macro:
In spreadsheet application Each and every file has a module called standard
module. All the macros are saved in that folder. While saving a macro,
remember the following.
All the user actions recorded using a macro is stored in form of code in IDE
(Integrated Development Environment). These codes are stored inside subroutines.
We can write our own functions inside a macro code. Functions are
independent piece of code that executes a specified task.
Body of function
End function.
An example function.
Function addition(x)
Y=x+25
Addition=y
End function.
A function inside a macro will be executed only when it is explicitly called. The
arguments for the functions are always passed as values. The macro names and
function names are not case sensitive
To allow a macro to accept a value, simply type a name for that value between
parentheses at the top of the macro.
Program Code
Function Name=Result
End function