Class 11 Application Package Project
Class 11 Application Package Project
Name: -
Date: - December 29, 2020
Declarations by the
student
I -- student of Grade XI, Roll No here by declare
that this assignment and project work has purely
done by me and is not produced by any one for
academic purpose anywhere else.
All the above given information is correct in the best
of my knowledge. If above information is incorrect,
College/NEB Board can take any action against me
and in this case I will not claim for any change in the
marks future.
Name: -
Roll No:-
Date: - December 29, 2020
Certificate
This is to certify that the project titled “Project for
Grade XI” embodies the original work done by
name
Under a strict adherence to the guidelines provided as
on the syllabus prescribed for Grade XI of Nepal
Education Board, Nepal for the subject Computer
Science.
Further this is to certify that the work reported in this
project has not been presented as a part of any other
academic work.
Unit 2: Spreadsheet
Microsoft Excel
MS Excel overview
Basic Formulas of MS Excel
Shorting & Filtering
Data Analysis
Pivot Tables
What-If Analysis
Unit3: Presentation
Features and Function of Presentation Software
Basic Fundamentals of Presentation
Application Package
Word Processing
A word processor is a type of software application used for
composing, editing, formatting and printing documents.
Word processors have a variety of uses and applications
within the business environment, at home and in
educational contexts. Word processors are used to create,
edit and print documents, and well as save them
electronically. Some examples of word processing programs
include Microsoft Word, WordPerfect (Windows only),
AppleWorks (Mac only), and OpenOffice.org.
Formatting Text
Formatting refers to the way our text will look like– the
design of the characters, their size, the space between
paragraphs, their alignment, etc.
First, selection of text.
• By using the mouse, position the insertion point (by
clicking the mouse) at the beginning or end of the block to
be selected and then click and drag to the end or beginning
of the block.• By using the shortcuts:
Double-click on a word to select it.
Triple-click on a paragraph to select it.
Ctrl+click on a sentence to select it.
There are basically two types of formatting:
• Character formatting,
• Paragraph formatting
Character Formatting
Character formatting is the one which we can apply to any
individual character or to a group of characters. It has the
following options
Font: This decides the appearance of our characters.
Paragraph Formatting
There are some formatting features that get applied to an
entire paragraph or paragraphs, but not to any given
character or a group there of. Such formatting features are
described as Paragraph formatting. It provides the
following options
Opening Excel
Using Windows 7
1. Click on the Start Button.
2. In the Search Program and Files box type Excel.
3. Click on Excel 2013 from the Program results.
4. The Microsoft Excel 2013 program will open.
Using Windows 8
1. Press the Windows key on the keyboard.
2. Type Excel.
3. Click on Excel 2013 under the Apps results.
Using iOS 7
1. Click on Launchpad.
2. Select Microsoft Excel
MS Excel overview
Below is a basic example of what
a Microsoft Excel spreadsheet looks like, with all the
important features of a spreadsheet highlighted.
Quick Access Toolbar
The Quick Access Toolbar is located to the right of the
Microsoft Office. Button . It contains commands that are
used most often, for example Redo, Undo and Save. Word
2007 allows you to customize the Quick Access Toolbar,
meaning that you can add and remove commands as you
like.
Command Group
Command group is a Tak-specific groups divided among
the command tabs appropriate. Command tabs. Task-
oriented tabs that are organized on the ribbon. Dialog Box
Launcher.
The Ribbon
Microsoft Excel ribbon is the row of tabs and icons at the
top of the Excel window that allows you to quickly find,
understand and use commands for completing a certain
task. ... The ribbon in Excel is made up of four basic
components: tabs, groups, dialog launchers, and command
buttons.
Name Box
In Microsoft Excel, the Name Box displays the cell that is
currently selected in the spreadsheet. It is located to the left
of the formula bar. If a name is defined for a cell that is
selected, the Name Box displays the name of the cell. You
can use the Name Box to define a name for a selected cell, as
well. The picture shows an example of the Name box in
Microsoft Excel.
Formula Bar
The Formula Bar is where data or formulas you enter into
a worksheet appear for the active cell. The Formula
Bar can also be used to edit data or formula in the active
cell. The active cell displays the results of its formula while
we see the formula itself in the Formula Bar.
Column
A column is a vertical series of cells in a chart, table,
or spreadsheet. Below is an example of a Microsoft Excel
spreadsheet with column headers (column letter) A, B, C, D,
E, F, G, and H. As you can see in the image, the
last column H is the highlighted column in red and the
selected cell D8 is in the D column.
Rows
A row is a series of data banks laid out horizontally in a
table or spreadsheet. For example, in the picture below,
the row headers (row numbers) are numbered 1, 2, 3, 4, 5,
etc. Row 16 is highlighted in red and cell D8 (on row 8) is
the selected cell.
Worksheet
The term Worksheet used in Excel documents is a
collection of cells organized in rows and columns. It is the
working surface you interact with to enter data.
Each worksheet contains 1048576 rows and 16384
columns and serves as a giant table that allows you to
organize information.
Zoom Control
The zoom feature in Excel changes the scale of a
worksheet. When you want to see more or less of a
worksheet, use Zoom to increase or decrease the
magnification.
COUNT
The COUNT function counts all cells in a given range that
contain only numeric values.
=COUNT(value1, [value2], …)
Example:
COUNT(A:A) – Counts all values that are numerical in A
column. However, you must adjust the range inside the
formula to count rows.
COUNT(A1:C1) – Now it can count rows.
COUNTA
Like the COUNT function, COUNTA counts all cells in a given
rage. However, it counts all cells regardless of type. That is,
unlike COUNT that only counts numerics, it also counts
dates, times, strings, logical values, errors, empty string, or
text.
=COUNTA(value1, [value2], …)
Example:
COUNTA(C2:C13) – Counts rows 2 to 13 in column C
regardless of type. However, like COUNT, you can’t use the
same formula to count rows. You must make an adjustment
to the selection inside the brackets – for example,
COUNTA(C2:H2) will count columns C to H
IF
The IF function is often used when you want to sort your
data according to a given logic. The best part of the IF
formula is that you can embed formulas and function in it.
=IF(logical_test, [value_if_true], [value_if_false])
Example:
=IF(C2<D3, ‘TRUE,’ ‘FALSE’) – Checks if the value at C3 is
less than the value at D3. If the logic is true, let the cell value
be TRUE, else, FALSE
=IF(SUM(C1:C10) > SUM(D1:D10), SUM(C1:C10),
SUM(D1:D10)) – An example of a complex IF logic. First, it
sums C1 to C10 and D1 to D10, then it compares the sum. If
the sum of C1 to C10 is greater than the sum of D1 to D10,
then it makes the value of a cell equal to the sum of C1 to
C10. Otherwise, it makes it the SUM of C1 to C10.
TRIM
The TRIM function makes sure your functions do not return
errors due to unruly spaces. It ensures that all empty spaces
are eliminated. Unlike other functions that can operate on a
range of cells, TRIM only operates on a single cell.
Therefore, it comes with the downside of adding duplicated
data in your spreadsheet.
=TRIM(text)
Example:
TRIM(A2) – Removes empty spaces in the value in cell A2.
=MAX(number1, [number2], …)
Example:
=MAX(B2:C11) – Similarly, it finds the maximum number
between column B from B2 and column C from C2 to row 11
in both columns B and C.
Shorting
Sorting is the process of placing elements from a collection
in some kind of order. For example, a list of words could be
sorted alphabetically or by length. A list of cities could be
sorted by population, by area, or by zip code. We have
already seen a number of algorithms that were able to
benefit from having a sorted list (recall the final anagram
example and the binary search).
There are many, many sorting algorithms that have been
developed and analyzed. This suggests that sorting is an
important area of study in computer science. Sorting a large
number of items can take a substantial amount of
computing resources. Like searching, the efficiency of a
sorting algorithm is related to the number of items being
processed. For small collections, a complex sorting method
may be more trouble than it is worth. The overhead may be
too high. On the other hand, for larger collections, we want
to take advantage of as many improvements as possible. In
this section we will discuss several sorting techniques and
compare them with respect to their running time.
Before getting into specific algorithms, we should think
about the operations that can be used to analyze a sorting
process. First, it will be necessary to compare two values to
see which is smaller (or larger). In order to sort a collection,
it will be necessary to have some systematic way to compare
values to see if they are out of order. The total number of
comparisons will be the most common way to measure a
sort procedure. Second, when values are not in the correct
position with respect to one another, it may be necessary to
exchange them. This exchange is a costly operation and the
total number of exchanges will also be important for
evaluating the overall efficiency of the algorithm .
Sorting data in excel means to arrange or organize the
given data in any form. Excel allows users to sort data in
alphabetical order, decreasing order, sorting based on color
and icon and so on. To learn how to sort data in any order,
follow the following mentioned steps –
Start by preparing a series of data having various
entries comprising of numeric data as well as text.
On the top most region of the work space, click on data.
An option appears sort and filter. The left side shows the
sorting and right side shows the filtering option
To sort data, there are three options available, click on
the very first option to sort data in alphabetical order
from A-Z. To sort data in the reverse order from Z-A Click
on the option below it.
From the given data set, select the region of data that
you wish to sort and hit the sort option. The data so
selected will be sorted accordingly
To sort data with headers, select the sort option. A
dialogue box appears, hit the option that says my data
has headers. Fill in the required fields as per the users
choice and hit OK
The data will be sorted according to the selected
inputs.
Filtering
Data Analysis
Data Analysis is a process of collecting, transforming,
cleaning, and modeling data with the goal of discovering
the required information. The results so obtained are
communicated, suggesting conclusions, and supporting
decision-making. Data visualization is at times used to
portray the data for the ease of discovering the useful
patterns in the data. The terms Data Modeling and Data
Analysis mean the same.
Data Analysis Process consists of the following phases that
are iterative in nature −
Pivot Tables
A pivot table is a data summarization tool that is used in
the context of data processing. Pivot tables are used to
summarize, sort, reorganize, group, count, total or
average data stored in a database. It allows its users to
transform columns into rows and rows into columns. It
allows grouping by any data field. Pivot tables are the
perfect solution when you need to summarize and
analyze large amounts of data. In just a few clicks, you
have access to a whole new set of information. As already
said, spreadsheets are one solution to create pivot tables,
but the best tools don’t require to write complicated
formulas or to start all over again every time you want to
organize the data differently. A drag and drop option to
move your fields around is the easiest way to go.
Create a PivotTable
1) Select the cells you want to create a PivotTable from.
2) Select Insert > PivotTable.
What-If Analysis
What-if analysis in Excel is used to test more than one value
for a different formula on the basis of multiple scenarios.
For this, we must have data of such kind where for a single
parameter we would have 2 or more values for comparison.
Go to the Data menu tab and click on the What-If Analysis
option under the Forecast section. Select the scenario
manager and give a scenario name and select the cell which
contains the scenario value. By this, we can enter multiple
scenarios. Now from the Goal Seek option from What-If
Analysis select the value we want to compare.
2. Goal Seek
The Goal Seek Excel function (often referred to as What-if-
Analysis) is a method of solving for a desired output by
changing an assumption that drives it. The function
essentially uses a trial and error approach to back-solving
the problem by plugging in guesses until it arrives at the
answer. For example, if the formula for revenue is equal to
the number of units sold multiplied by the selling price, Goal
Seek can determine how many units have to be sold to reach
$1 million of revenue, if the selling price is known. The
function is extremely useful for performing sensitivity
analysis in financial modeling.
3. Data table
Data tables in excel are used to compare variables and their
impacts on the result and overall data, data table is a type
of what-if analysis tool in excel and is present in the data
tab in the what-if analysis, this tool asks for a row input and
a column input table to make a data table and the impact is
calculated by one variable or two-variable data table.
Excel
TOTAL =SUM(F2:J2)
RESULT =IF(AND(F2>=50,G2>=50,H2>=50,I2>=50,J2>=50),"PASS
","FAIL")
PERCENTAGE =(K2/500)*100
DIVISION =IF(M2>=80,"DISTINCTION",IF(M2>=60,"FIRST
DIVISION",IF(M2>=50,"SECOND
DIVISION",IF(M2>=40,"THIRD DIVISION","FOURTH
DIVISION"))))
RANK =RANK(M2,M2:M11)
Presentation
The presentation can be defined as the practice of showing
the content of a topic along with explaining it to a specific
audience. It is a collection of information and data which
has to be delivered to an audience or learners. It helps both
the speaker and the participants to learn about the topic
more easily. For example, a PowerPoint presentation is a
collection of electronic slides which consists of text, images,
tables, graphics, video and sound which leads both the
presenter and the audience to remember more accurately
and uncomplicatedly.
To Open MS PowerPoint:
When you open PowerPoint 2007, a similar screen to the
below figure appears.
Fig: MS Powerpoint