Understanding Computer Applications Basics
Understanding Computer Applications Basics
Acknowledgements
Jeffrey K., Head of Department, Business and informatics, for his cordial support,
valuable information and guidance, which helped in completing this module through
various stages.
ASSESSMENT PROCEDURE
Continuous assessment tests 20%
Assignments 10%
Written examination 70%
Total 100%
Recommended books:
Computer application by peter McWilliams
INTRODUCTION
A computer is a programmable machine designed to perform arithmetic and logical
operations automatically and sequentially on the input given by the user and gives
the desired output after processing.
A computer can also be defined as an electronic machine that accepts
input(data)processes it, stores it and produces it as output (information).
A computer accepts and then processes input data according to the instructions it is
given.
Data is the name given to facts that are fed to the computer.
Information is the meaningful data that is relevant, accurate, up to date and can be
used to make decisions.
Information can also be defined as the data that has been processed.
Central Processing
Input Unit Output
Arithmetic Logic
(data) Unit (Information)
Control Unit
Main memory
Secondary
memory
(Backing memory)
DIGITAL LITERACY
Computer components are divided into two major categories namely hardware and
software.
Hardware is the physical, tangible, visible devices attached or connected to the
machine such as monitor, keyboard, mouse etc.
Software is the set of programs that make use of hardware for performing various
functions. Also sets of instruction that tell the computer what to do.
Hardware can be either an input device or an output device.
Input devices fed data/information to the computer e.g. mouse, keyboard, scanners,
cameras etc while output devices produce data or information from a computer e.g.
monitor, printers, plotters etc
Central processing unit (CPU): The chip or chips at the heart of a computer that
enable it to process data. Also known as a processor.
It is the unit that reads and executes program instructions.
The CPU is composed of several units...
The control unit directs and controls the activities of the internal and
external devices. It interprets the instructions fetched into the computer,
determines what data, if any, are needed, where it is stored, where to store
the results of the operation, and sends the control signals to the devices
involved in the execution of the instructions.
The arithmetic and logic unit (ALU) is the part where actual computations
take place. It consists of circuits which perform arithmetic operations (e.g.
addition, subtraction, multiplication, division) over data received from
memory and capable to compare numbers.
The ALU is divided in two categories i.e. Arithmetic Unit which is used to
perform arithmetic operations (e.g. addition, subtraction, multiplication,
division) and Logic Unit is the section that is used to perform logical
operations such as comparisons.
While performing these operations the ALU takes data from the temporary
storage area inside the CPU named registers.
Registers are a group of cells used for memory addressing, data
manipulation and processing. Some of the registers are general purpose and
some are reserved for certain functions. It is a high-speed memory which
holds only data for immediate processing and results of this processing. If
these results are not needed for the next instruction, they are sent back to the
main memory and registers are occupied by the new data used in the next
instruction. RAM (Random Access Memory) and ROM (Read Only
Memory) are the CPUs memory cache.
REGISTERS: these are temporally memory locations used to hold data when the
main memory is not enough or to speed up executions. Registers are used to handle
data before it can be held by RAM or immediately after input into the computer.
They are highly volatile.
Secondary Storage
The purpose of secondary storage is to store data and programs on a long-term basis.
(Hence, all forms of secondary storage are non-volatile, meaning that they retain
the data stored on them (for a long period of time) without the need for electrical
power.)
Among the types of secondary storage media are these:
Flash memory sticks; these usually are attached to a computer via a USB port and
have a capacity in the hundreds of MB or a few GB's. They are highly mobile and
have largely supplemented floppy disks in recent times.
Magnetic Disk: These are disks on which data is recorded on a set of concentric
rings ("tracks") using properties of magnetism. They include:
hard disk: high storage capacity (in early 2008, typically in the range of 80 to 320
GB) and much cheaper than RAM (in early 2008, about $0.25 per GB, which is
about 1/100 the price of RAM) removable/portable disk: zip disk, disk cartridge,
floppy disk
Optical Disc: These are discs on which data is represented in concentric tracks.
Types of optical discs
CD-ROM: "Read Only" (used for distribution of commercial software, for
example) Standard storage capacity is 640MB.
CD-R (or CD-WORM): "Write Once, Read Many" times
CD-RW: rewritable multiple times
DVD: similar to CD, but with significantly larger storage capacity
Magnetic Tape: usually used for making backup copies of disk (so that if the disk
fails, a recent copy of its contents can be recovered and written onto a new
replacement disk). Tapes that are kept offline (meaning that they sit on a shelf and
are "mounted" onto a tape drive).
COMPUTER SOFTWARE
This is the set of instructions that tell the computer what to do. Computer software
refers to all programs that enable the computer hardware to function properly.
It instructs the computer what to do and how to do it. Without computer software a
computer cannot function, it is hardware and software combined together that form
the computer system.
System software
Application software
System Software
This is a set of programs which have been developed and installed in a computer for
the purpose of enhancing and managing the performance of the computer. System
software is used to manage the computer but not to meet the end users needs.
System software is divided into two, i.e.
Operating system
System utilities
Operating system is a group of programs that manages the entire computer and
present user with an interface to work with. It ensures that everything in the
computer is functioning as expected. Examples of operating systems in the market
today include- Ms Windows, Linux, UNIX, MS-DOS, Solaris etc.
DIGITAL LITERACY
System utilities are the programs used to partly manage the computer system. They
are the pro grams used to carry out routine jobs in the computer. They enhance the
performance of the computer but don’t manage the entire computer. They include:
Text editor: - this is utility software used to create and modify textual information
using a computer.
Debugger: - this is a program used to detect and remove errors in programs during
programming.
Loader: this utility program transfers the linker program into computer memory to
be ready for execution. Loader therefore is used to transfer a program into main
memory to await execution.
Sort utility: - this is a service program that is used to arrange the records within a
file according to a pre-determined sequence. The arrangement can either be
ascending or descending.
Merge utility: - this is a service program used to influence the combination of the
content of 2 or more files to produce a single output file.
Copy utility: - this is the utility software used to duplicate records in a computer
system. A copy of an existing record is made in another location.
Dump utility: - dumping refers to the process of copying contents in main memory
to secondary storage. Dump utility transfers contents on computer internal memory
(RAM) into a backing storage.
Database management system: - this is the utility used to manage and control
storage of data in a computer system. It consists of a group of programs that has
several functions with relation to a database.
Application Software
Application software refers to the programs that are used by the computer to
perform certain specific task.
These programs are developed to handle the end user needs. Application software
can be classified under:
Application package
User software
User programs also known as tailor-made programs are developed for specific
individuals or organizations. They are developed following the specific instructions
of the end-user (i.e. tailor-made)
Programming Languages:
Machine Language
DIGITAL LITERACY
It consists of combination of 0’s and 1’s that represent binary digits. It is the lowest
level of programming language. All programs must be converted into machine
language before they can be executed.
This language uses symbolic operation code to represent the machine operation
code. It is converted by an assembler to machine code (object code). E.g.
FORTRAN, COBOL, Basic(C).
These are very convenient, but also very far removed from the computer they are
running on. They are very simple to use because they use the common English
language terms. E.g. Java, Python, ML, Prolog
4GLs are closer to human language than other high-level languages and are
accessible to people without formal training as programmers. They allow multiple
common operations to be performed with a single programmer-entered command.
E.g. FoxPro, Clarion, Dataplex, Clipper, WinDev etc.
Specific Objectives
a) meaning of operating systems
b) explain the functions of operating system
c) describe the types of operating system
d) demonstrate skills in the use of operating system commands
OPERATING SYSTEM
An operating system is a software component of a computer system that is
responsible for the management of various activities of the computer and the sharing
of computer resources.
It hosts several applications that run on a computer and handles the operations of
computer hardware.
Users and application programs access the services offered by the operating
systems, by means of system calls and application programming interfaces. Users
interact with a computer operating system through Command Line
Interfaces (CLIs) or Graphical User Interfaces known as GUIs.
In short, an operating system enables user interaction with computer systems by
acting as an interface between users or application programs and the computer
hardware. Some of the common types of operating systems are
OS/2-is IMB’s GUI operating system for Intel microprocessors. It’s a 32bits
single-user, multi-tasking operating system
UNIX-is a multi-user, multitasking operating system
MS-DOS-was a defacto operating system for Intel-based personal computers
from [Link] is used sparingly as a subsidiary operating system for
IBM PCs and compatibles.
Windows,
LINUX etc.
Processor management
The CPU can only execute one program at a time and therefore access to
CPU must be carefully controlled and monitored. The operating system must
decide which program will be allowed into the system and how long.
Hardware management
Programs will request the use of input output devices during the course of
their execution and in a multi user system conflict are bound to arise, when a
device being utilized by one program is requested by another. The operating
system will control allocation of I/O devices and attempt to resolve any
conflict which may arise. It will also monitor the state of each I/O device and
signal any faults detected.
Error Reporting
During program execution, if there occurs an error of any sort, the operating
system furnishes diagnostic messages to the user through e.g. the screen and
the program in execution is stopped for user corrective responses.
Interfaces the user to the system hardware
The operator invokes the services of the operating system by use of
commands and the operating system communicates the messages regarding
the processing to the operator through e.g. the screen or the printer.
Logging and accounting
The operating system keeps track of the records on the computer’s resources
use. A log of the tasks carried by the computer is kept. The operating system
keeps internal logs on the time, memory usage, peripherals used, etc
WORD PROCESSING
MICROSOFT WORD
Specific Objectives
a) define word processors
b) understand word processing concepts
c) explain the features of a word processors
GETTING STARTED
Microsoft Word is one of the most popular word processing programs supported by
both Mac and PC platforms. Microsoft Word can be used to create documents,
brochures, leaflets, outlines, resumes, lists, and simple web pages
SAVING INITIALLY
Before you begin to type, you should save your document. To do this, go to Office
Icon (Figure 2) > Save As. Microsoft Word will open a dialog box (Figure 1) where
you can specify the new file’s name and location where you want it saved. Once you
have specified a name and a place for your new file, press the Save button.
Figure 2
Note: when you want to save your document on a Mac and then open it on a PC you
must specify a file extension (i.e. .doc). Usually your computer will do this for you,
but if it does not you must do this process while in Save As. Once you have titled
your document, you can give it a file extension by clicking in the Format box. Click
Microsoft Word Document for the correct file extension and make sure Append
File Extension is checked
SAVING LATER
DIGITAL LITERACY
After you have initially saved your blank document under a new name, you can
begin writing your paper. However, you will still want to periodically save your
work as insurance against a computer freeze or a power outage. To save, click
Office icon > Save.
The Home Tab (Figure 4) is Microsoft Words standard view. This is the view most
widely used and allows you to format text by Font Style, Font Size, Bold, Italic,
Underline, Alignment, Numbered List, Bulleted List, Indentation, Spacing, and
Font Color.
The Insert Tab contains any additives you want to place in your document,
including but not limited to: Tables, Clip Art, Headers and Footers. These icons
are convenient and will bring up a dialogue box to give you further options when
clicked.
The Page Layout Tab contains icons for page setup and paragraph actions, such as
Margin, Page Orientation, Columns and Spacing
The Mailings Tab (Figure 8) is for post-office related uses. If you wanted to create
custom Envelopes, or Labels, this is where you would find such actions
Figure 8. Mailings Tab.
The Review Tab is where one can find Spelling & Grammar, the built in
Thesaurus and Dictionary, you can Track Changes, and Add Comments.
FORMATTING
To Cut or Copy: Highlight the text by clicking and dragging over the text to be cut
or copied. Go to Home Tab > Copy or Home Tab > Cut. Click the location where
the information should be placed. Go to Home Tab > Paste
FORMATTING TEXT
Before you type, you should select your font style, size, color and attributes (such as
bold, italic and underline) in the Home Tab. You can expand the Font Menu box to
get more options by clicking the down-arrow (Figure 13). However, if you wish to
change text that has already been typed, click and drag over the text to be changed
to highlight it (or go to Edit > Select All to select the entire document) and change
it as before.
Figure 13. Changing the font attributes in the Font menu
ADDING COLUMNS
Columns can be used for a variety of document types, such as a tri-fold brochure.
To do this, go to Page Layout Tab > Columns. From the Columns menu, you can
choose the number of columns, or for more options, click More Columns where you
can set column width and spacing. Once you select your preferred design, it will
show up in the Preview box. This is a nice feature because it allows you to see what
DIGITAL LITERACY
you are selecting before applying it to your word document. When you are happy
with how your document looks, click OK.
Figure 14. Selecting the number of columns from the Columns Menu.
CLIP ART
When trying to enhance your word document you may want to include Clip Art
and/or Word Art. Microsoft Word comes with a Clip Gallery (Figure 16) that
contains a large variety of images including pictures, borders, and backgrounds. To
find a desired image, you can either click on topics or type in the search box to find
exactly what you are looking for.
To insert Clip Art: Go to Insert Tab > Clip Art. A new toolbar will appear on the
left, where you can search or browse (by hitting “Go”) and then select the desired
picture in the Clip Gallery. The picture will be inserted at the location of your cursor
within your document. If you need to modify you Clip Art, click on it once to select
it, and small boxes will appear around the corners (See WordArt, Figure 3). Once
your Clip Art is selected, you can resize your picture by clicking and dragging on
the boxes. Holding SHIFT while clicking and dragging will resize the Clip Art
proportionately.
You can use the Drawing toolbar to further modify your Clip Art (Figure 2). To
delete Clip Art, select it by clicking on it until the black boxes appear and then hit
DELETE.
DRAWING
To draw in Word, go to the Insert Tab > Shapes and click the New Drawing
Canvas. A new toolbar will appear that is specific only to drawing tools.
WORDART
To insert WordArt: Go to Insert Tab > WordArt. Select the desired style and
click OK. Type the desired text and click OK. You can further modify your text by
using the Drawing toolbar. To select your WordArt, click on it, and small boxes
will appear in the corners (Figure 18). Moving the yellow box on a selected
WordArt allows the user to change the slant of the WordArt. WordArt can be
resized and deleted similarly to Clip Art
DIGITAL LITERACY
WORD WRAP
Word Wrap is a part of formatting pictures. To use Word Wrap, select your
inserted image, and go to the newly created Format Tab where you can choose the
type of text wrapping you desire. For more options, select More Layout Options
(Figure 19).
CREATING A TABLE
To create a table within your document, go to Insert Tab > Table. Choose the
desired table size and format, and click OK. The table will be inserted at the cursor's
location within your document. To navigate within your table, use the arrow keys.
To modify your table, when your table is selected, a Design Tab and Layout Tab
DIGITAL LITERACY
will appear in the Toolbar (Figure 20). From here, you can add cells, columns or
rows, merge or split cells, and further modify your table. To exit the table, click
outside of it.
FLOWCHARTS
Flowcharts are used to create diagrams in Microsoft Word. Word 2007 has a new
feature called Smart Art that allows you to insert all types of Flowcharts. If you
want to create a custom flowchart, you can use the Drawing capabilities discussed
earlier. To insert Smart Art, go to Insert Tab > Smart Art. A dialogue box will
open (Figure 21) with basic choices
PRINTING
It is important to always save your document before you print!
PRINT PREVIEW
Before you print your document, you may want to preview it to make sure you are
happy with the page layout and appearance of your document. To do this, go to
Office Icon > Print > Print Preview. This should open up a preview of your
document and the Print Preview toolbar (Figure 22). The mouse should look like a
magnifying glass, which allows you to zoom into an area of your document by
clicking on it. (If the mouse does not look like a magnifying glass, use the Print
Preview toolbar to select the zoom tool.) If you are satisfied with the appearance of
your document, you can click on the Print icon in the Print Preview toolbar. If you
need to make changes to the document or are not ready to print, select Close on the
Print Preview toolbar.
Figure 22: Print Preview toolbar with a preview of the document behind it.
PRINTING
To print your document, go to Office Icon > Print > Print, select your desired
settings, and then click Print again. It is also possible to print by using the Print
icon on the Main Toolbar, however this does not bring up the Print dialogue box
that allows you to change your printing options, so it is advisable to use the other
method.
SAVING AS A PDF Go to Office Icon > Save As > PDF or XPS
WORD COUNT
To get an accurate word count of your document, go to Review Tab > Word
Count. This will give you the total number of words in your document (Figure 23).
If you need to word-count a specific section, highlight that section first by clicking
and dragging over it and then to go Review Tab > Word Count as before.
QUITTING
Before you quit, it's a good idea to save your document one final time. Then, on a
Mac, go to Word > Quit or on a PC go to Office Icon > Exit Word. This is better
than just closing the window, as it insures your document quits correctly.
EXERCISE 1:
1) Load Microsoft Word.
2) Type the following text :
The Fairy Tales we deserve The Disney Stories that enchant us today are drawn
from ancient, worldwide folk tradition. Some folklorists believe that "Cinderella" in
its most basic form--neglected youngest child is tested, found worthy, rewarded with
mate--dates back to the Old Stone Age. Cinderella Folk versions of "Cinderella"
were related in hundreds of societies. In these stories, the "test" for the unfortunate
child is different. Our familiar Cinderella is beautiful and has tiny feet. By contrast,
the Japanese Cinderella gets her Prince by writing a prize-winning
poem. Other fairytales include:
Little Red Riding Hood
Three Little Pigs
bEAUTY AND THE bEAST
3) Save your work as “ Fairytales” on my Desktop.
4) Run the spell checker.
5) Embold and underline “ The Fairy Tales we deserve”
6) Change the line spacing of the paragraphs to 1.5.
7) Apply a hanging indentation to the second paragraph starting “ Folk versions…”
7) Replace the word “beautiful” with magnificent.
11) Add a header to the document and write your Name and Surname.
17) Using the help function, search using the word “ Table” choose “Delete a cell ,
row , or column from a table”. Copy the first point stating “ Select the
cells…..delete” and paste it under the table.
18) Set the top margin to 3 cm.
19) Save your work and close Microsoft word.
SPREADSHEET
Specific Objectives
a) explain the worksheet formatting
b) explain cell data types
c) explain the worksheet layout
d) use formulae and functions
e) explain charting
f) describe skills in simple database management
g) describe worksheet and chart printing
h) explain the use of utilities
i) explain the use of macros
MICROSOFT EXCEL
2. Title bar - contains document's name, extension (.xlsx) and the program name
3. Tabs:
Insert Data
DIGITAL LITERACY
4. Toolbar
some tools have hidden tools. If they do, they have an arrow in their lower right
corner which, when clicked, displays additional options
Greyed out
Same icon active
tools that have an downward arrow lead to another sequence of commands when
pressed
5. Selected cells – before we can enter a text, number, “Sparkline” (chart contained
within one cell) or other data, we must first select a cell or cells
10. Status bar - displays information about some special functions of Microsoft
Excel
Worksheet: consists of a large number of cells arranged in columns and rows that
form a table
Cell: basic element in Excel for data entry (text, number, formula)
cell address: column letter and row number on a worksheet, e.g. A1, C7, F25
Selecting cells -press the left mouse button on a cell in order to select it. Enter data
–data can be added cells and existing content can also be edited.
Add content to cell – single-click with the left mouse button on a cell and enter any
extra data.
Change the existing content – single click on the selected cell and then click on the
formula bar to make changes to the data. Alternatively, press F2 after selecting the
cell to move the cursor into the formula bar
If entered content exceeds cell width, it will be displayed over adjacent cells,
provided that the adjacent cells have no data entered. However this can also be
customized using the Wrap Text option in the Alignment toolbar
To move to another cell: you can use the TAB key to move to the right, the
ENTER key to move down, the keys with arrow on the keyboard, or the left mouse
button.
select the first cell in a range, press and hold the left mouse button, move the mouse
to the last cell and release the left button, or
select the first cell in a range, press and hold the Shift key, select the last cell in the
range and release the Shift key
Select a row or column: press the mouse button on the row number or column
letter.
Select several adjacent rows: press the left mouse button on the row number, press
and hold the left mouse button, move the mouse to the last row and release the left
button (or use the Shift key, while it is pressed, select the first then the last row and
then release the Shift key).
Rename worksheet:
while we are positioned in the worksheet, we want to rename: press the Format
button on the Home ribbon, choose the Rename Sheet option, enter a new name and
press the Enter key, or
press the right mouse button on the tab of the worksheet and from the quick menu
choose the Rename option, or
DIGITAL LITERACY
double click on the tab of the worksheet and type the new worksheet name.
1. press the right mouse button on the worksheets sheet tab and choose the Move or
Copy sheet option
2. within the dialog box that appears, choose the workbook you want to move the
sheet to, and the sheet before which it will be placed
If you want to copy the sheet, mark the checkbox next to the Create a Copy option,
otherwise the worksheet will be moved.
Deleting cell content – select one or more cells (with the Shift key if they are
adjacent, or with the Ctrl key if they are not), and press the Delete key or Delete
button on the Home ribbon.
Always select the cells first and then the desired tool. Arrow in the lower right
corner will provide you with additional options
Save as type – choose the file type - format in which file will be saved
Creating a new workbook: press the Office button, choose the New option, then
Blank workbook, and then press the Create button (or use the keyboard shortcut Ctrl
+ N)
Open an existing file - to open several files at once, use the Ctrl key or the Shift key
to select them
Print:
Scaling:
No scaling Fit all columns to one
Fit sheet to one page page
Fit all rows to one page
Collated – will print the entire worksheet from start to finish, then will make copies
according to the selected number of copies;
Uncollated - will print the first page according to the selected number of copies,
then the second page, etc.
Page setup
Sheets – select a cell range that will automatically print and rows that will
repeat on each page of the worksheet
Share –there are new features that make it easy to share documents:
Change File Type – save the file in another file type - format
Options
on the General tab, you can enter a username
on the Save tab > there are fields to enter “AutoRecover file location” and
“Default file location”
Enter function:
1. select a cell range
Or:
1. select the cell in which you want to enter function value
2. enter the symbol „=“
3. enter the function manually (e.g. „sum“), and the cell range to which the
function will apply, respecting syntax
Format Painter - copy formatting from one part of the text to another
Help in MS Excel , or F1 on the keyboard
INSERT TAB
Shapes – after selecting a shape, we can insert it in the sheet using the drag-and-
drop method, which automatically defines its size and position.
Arrange – sets elements in front of (option Bring forward) or behind (option Send to
back) other elements.
- opens color palette
- opens color palette and options for choosing type and thickness of lines
- effects: 3D, shadow, reflection, rotation etc.
Pictures
to select a picture: press the left mouse button on it, the picture will get squares on
the border called control points which allows the size of the image to be
manipulated.
set object size:
manually: select an object, move some of the control points using the drag-and-
drop method
enter values: press the right mouse button on the object and choose the Format
Picture option; on the Size tab, enter values for height and width
While the object is selected, we can open the Format tab, that contains some new
formatting options
Header and Footer - edit: press the left mouse button within the header or footer
field, or: press the right mouse button and from the quick menu, choose the Edit
Text option
Chart
Charts are graphical representations of table data in various forms, like column
graph. Tabular data and graph are connected -therefore changes in the table are
reflected in the chart
when we insert a chart, a table for data entry opens in Microsoft Excel and
we can enter data. Also, if we select a cell range filled with data, the chart
will be automatically filled with the selected data.
to change chart size: select a chart and move (drag-and-drop) the control
points to the desired direction
changes in the chart can be done via the Chart Tools toolbar, that appears
when the chart is selected; via the quick menu or by double-click with the
left mouse button on the chart
Format Chart Area – effects like color fill, 3D, rotation, shadow etc. are
accessible
Change Chart Type – choose chart type
move the chart: within the Chart Tools toolbar, select the Design and choose
tool Move chart:
New sheet (and there is a field to enter the worksheet's name), or
Object in > on the drop-down menu, choose the worksheet in which you
want to place the chart
„SmartArt“
fields can be moved in order to edit its structure: press the left mouse button
on the fields border, via the drag-and-drop method, move it to the desired
position
add new field: press the right mouse button over the field, upon which you
want to add a new field and choose the Add Shape option on the quick
menu, then choose where to add it “below” or “above” (hierarchal)
deleting: select a field and press the Delete button
Sparklines
chart within one cell;
needs to have a defined position (cell address that contains it) and data cell
VIEW TAB
Freeze and unfreeze rows and columns in order to always be visible. This is useful
when the data in the worksheet does not fit on the computer screen but the user
needs to see the row and column labels:
freezing columns and rows: select a cell within the sheet and choose the
Freeze Panes button. Columns to the left and rows above will be “frozen”
meaning that as the user scrolls left and right in the worksheet, the frozen
cells always remain visible.
freezing top row: choose the Freeze Panes button and choose freeze top row
freezing first column: choose the Freeze Panes button and choose freeze first
column
FORMULAS
multiplication = A3 * C5
division = C5/C3
exponentiation = F15^ A2
DIGITAL LITERACY
Logical function if
= logical function that compares cell values with some expression or value. We
define the appropriate action depending on the result
EXERCISE:
MICROSOFT ACCESS
Specific Objectives
a) explain the worksheet formatting
b) explain cell data types
c) explain the worksheet layout
d) use formulae and functions
e) explain charting
f) describe skills in simple database management
g) describe worksheet and chart printing
h) explain the use of utilities
i) explain the use of macros
Access 2007 stores data in tables which look more like the cells of a spreadsheet
with columns and rows. Each row represents a record, and each column represents
a field. Table 5.1 is an
example of a Table having Details of Students. In this Students database each
student would be considered as a record and each record (student) consists of
headings or categories called
fields or attributes, and each record in the database is formatted in the same way.
Table 5.1: Details of Students
Enrolment First Surname Mother’s Gender Date of City
No. Name Name Name Birth
Sohan Verma Rama Devi Male 15/01/1992 Patna
Mohan Nath Veena Rani Male 10/11/1991 Gwalior
Meghna Kishore Deepa Kishore Female 28/02/1990 Agra
Ashita Agrawal Abha Agrawal Female 26/03/1993 New
Delhi
Rohit Goel Kavita Goel Male 10/07/1992 Mysore
Anshul Agrawal Hansi Agrawal Male 26/11/1995 Gwalior
3. The first field (column) is automatically named ID, the data type is AutoNumber
and it is the assigned Primary Key. Generally Primary keys are not required but
they are needed to combine two or more tables, columns, or rows in a database.
Primary key is a unique number, i.e., it cannot be duplicated.
4. Double click on Add New Field and type in the new field name F_name for the
First Name, L_name for Last name of the student and so on as given in Table 5.1.
When entering field names, do not use spaces or punctuation.
5. Type in Sohan, in the first row under the field F_name.
6. The Data Type is set to Text. While entering numbers or date, the data type
would be set to Number or Date and Time and so on. Complete the table by
entering data (as given in Table 5.1). The screen will look like Fig 5.7.
Fig. 5.7
Data Types
It is important to assign appropriate data types as given in Table 5.2 to a field since
they specify what type of data can be entered
into a field.
Data Type Description
Text-Can contain text, numbers, or a combination that do not require calculations
such as addresses, phone numbers, etc. Maximum number of characters, including
spaces, is 255 characters.
Memo- Similar to the text field but can hold huge data.
Number Can have Numeric data only
Date/Time- Date and Time information
DIGITAL LITERACY
SAVE A TABLE
Saving a table with a specific title will help when organizing information, creating
queries, forms, and pages, and connecting to other tables.
1. To save the current table, click the Save button in the Quick Access Toolbar.
2. You can also get to a Save button through the Office Button.
3. You can use Save As, from the Office Button to rename the database, save a
copy or to save it in another format
CHANGE VIEWS
A view is a way of looking the data stored in tables. Two possible ways for viewing
the data are Datasheet view and Design view.
View buttons are provided in the lower right corner of the Access window which
help you to switch from one view to other. You can also use view buttons on the
Home tab to change views.
Adding Fields in Datasheet View
By default, Access 2007 creates one field in each new table, the ID field. This field
auto-numbers to give each record in the table a unique number identifier. Recall that
records are the rows in a table.
To add more fields to a table in Datasheet View, double click on the Add New
Field header. The Add New Field text will disappear from the header. Name the
field by typing the name directly into the header. Press the tab key on your
keyboard to move to the next field.
Adding Fields in Design View
In Design View, the field names are along the left-hand column instead of across the
top like in Datasheet View.
Creating or editing a table in Design View gives you freedom to construct a table
with specifications for data collection. You do not type in the actual data in this
screen. You are setting up the table structure - field names, data types, field size, etc.
To add a new field to a table in Design View, just click in the cell where you want
the new field and type the field name. When you switch back to Datasheet View,
your new field appears as its own column. In Design View, you have many field
property options that you can set to ensure that data can only be entered in certain
formats.
Setting these options is a good idea if you want to make sure the data that you have
in your database is correct in all respect.
Ribbon and then the Tools group click Add rows. A blank field will be inserted.
Moving Fields
If you want to rearrange the order in which your fields appear in a table, Access
2007 lets you easily move them around. To move a field in Datasheet View, drag
and drop the field to the location you want. To do this:
Click on the field header for the field you wish to move.
Move the mouse in the area of the header. When the cross with arrows appears,
hold down your left mouse button. With the left mouse button still held down, move
the cursor to where you would like the field to appear.
Deleting Fields
To delete a field in Datasheet View, just click on the field header and then select
Delete from the Field & Column command group.
This is found on the Datasheet tab on the Ribbon.
To delete a field in Design View, select the field to be deleted,
click the Design tab on the Ribbon and then in the Tools group
click Delete rows.
CREATING QUERIES
Access 2007 has a powerful feature of queries. Queries actually mean the question
you asked from the database to get the desired result. A query can be designed to
extract data from one
or more database tables. Queries in Access can be created in various ways and range
from very simple field selection to complex conditional statements or calculations.
Access 2007 allows you to create queries in two ways.
(1) Using the query wizard
(2) Using design view
Fig 5.11
Fig 5.12
A simple query wizard dialogue box appears. From the Tables/Queries list box,
select the table on which you want to create the simple query. Here we have selected
the table named Friends of Mine (Fig 5.13).
5. All the fields of selected table are shown in the available field’s area. Select the
field you want to add in your query and then click on the > button. If you want to
select all the fields than you can click on >> button. (See fig 5.13)
Fig 5.13
Fig 5.14
6. In Fig 5.14, it has been shown how to select one field from the available field’s
area and move it to the selected field’s area. In this case we have selected 3 fields,
first name, last name and phone number
DIGITAL LITERACY
Fig 5.15
7. Click on the next button. Next screen appears as shown in Fig 5.15.
8. Type a title for your query in the box provided as shown in Fig 5.15. Here title for
the query is Names and numbers.
9. Click on the finish button.
10. Access 2007 displays the result of query in the form of a table as shown in Fig
5.16. Since we have asked only for 3 fields, First name, last name and the phone
number to be
shown from the table Friends of Mine, only these 3 fields are displayed as you can
see in Fig 5.16. This is a simple query.
Fig 5.16
Fig 5.17
1. Click on the field name you want to display. (In this case it is student name field
of student_pers table).
2. Drag it in the field line or you can double click on the field to bring it to the field
line
(Fig. 5.18).
3. Click the Run button. Access shows the column you chose (Fig. 5.19).
Fig 5.18
Fig 5.19
Fig 5.20
DIGITAL LITERACY
Click the Run button. Access displays the columns you chose (Fig 5.21).
Fig 5.21
SORT A QUERY
When creating a query, you can sort the columns in ascending or descending order
by choosing the option you want on the Sort row in Query Design view. The steps
are as follows:
1. Open the student_pers table in the design view
2. Select and drag the fields in the field grid area in the order you want them to be
displayed.
3. Click in the sort row in the column which you want to sort (in this case it is the
State column) and Click the down pointing arrow that appears and then choose
ascending (or descending)from the drop down list (Fig 5.22).
4. Click Run button.
5. The sorted column is shown along with others in the Fig 5.23.
Fig 5.22
Fig 5.23
6. Enter your selection criteria on the Criteria line (Here the criteria entered in the
state column is = “DELHI”) (Fig5.24).
7. Click the Run button. The query results can be viewed in the Fig 5.25.
Fig 5.24
Fig 5.25
Fig 5.26
SAVE A QUERY
After you create a query, you can save it. You can re-run a saved query at any time.
If you change the data on which the saved query is based, you will see the changes
when you re-run the
query. The steps are as follows:
1. Click the Save button on the Quick Access toolbar. The Save As dialog box
appears.
2. Type the name you want to give to your query.
3. Click OK. Access saves the query. (Fig 5.28)
Fig 5.28
FORMS
A form is a graphical representation of a table. One can add, update and delete
records in table by using a form. A form is very useful to use when the table
contains numerous fields. Forms
make it easy for you to access information in a database. With a form, you can
focus on one record in a database at a time and can view, add and delete data from
that record.
Creating a Form using the Form Tool
Form tool in access 2007 can be used to create a form with a single mouse- click. To
create a form with this tool, steps are as follows:
1. In the Navigation Pane, select the table or query to create a form.
2. Click on the create tab
3. In the forms group, click form (Fig. 5.29)
4. Form is created displaying it in layout view along with the form layout tools i.e.
Format tab in the ribbon. (Fig 5.30)
Fig 5.29
Creating a Form using Form Wizard
1. Click the create tab
2. In the forms group, click more forms (Fig. 5.31)
DIGITAL LITERACY
Fig 5.30
Fig 5.31
3. When you click form wizard, a Form wizard dialog box appears. (Fig 5.32)
4. From the available fields area, select the fields one by one which you want in
your form. Click > button. To select all fields click on >> button.
Fig 5.32
5. Now click Next button (Fig. 5.32)
6. Select a layout for the form. The various layout for forms available are columnar,
tabular, datasheet and justified and click Next
button (fig. 5.33).
Fig 5.33
Provide a title for the form. (Fig. 5.35) and click Finish button.
DIGITAL LITERACY
Fig 5.35
The form will open in Form View (Fig. 5.36)
Fig 5.36
REPORTS
Although tables, queries and form can be printed, they may not look very
professional, as they are not designed for printing purposes. Reports, however, are
designed to take the data from
a table or selected by a query and printed in a professional looking layout. Report
allows you to group, sort and manipulate the data to suit your requirements. Reports
are the most powerful and
flexible way to view and print the information in your database. To make your data
more presentable for others to record and easily understand, you would need to
create reports.
Fig 5.37
2. Click the create tab, in the Reports group, click Report.(Fig 5.37)
3. Report is generated and displayed in layout view along with the Report Layout
Tools i.e. Format Tab in the ribbon (Fig 5.38).
Fig 5.38
Creating a Report Using Report Wizard
DIGITAL LITERACY
Report Wizard can be used to include the selected fields in your report and specify
how the data is grouped and sorted. Fields from more than one table or query, can
also be used if you have
already specified the relationship between the tables and queries. Various steps are
as follows:
1. Click the Create Tab, in the forms group, click Report wizard button. A Report
wizard dialog box appears (Fig. 5.39).
Fig 5.39
2. Click in the Tables/Queries list box and choose the table or query name that
contains the data to be included in a report.
3. From Available Fields: area, select the fields which you want in your report and
click > button. To select all the fields present in the Available Fields: area, click >>
button.
To remove a field from the Selected Fields: area click the < button. To remove all
the fields, click the << button. ClickNext button.
4. Additional dialog box appears, asking for grouping your data by a specific field
(Fig 5.40).
Fig 5.40
5. Click a field name displayed in the box, Click > button and then click Next
button.
In this dialog box choose a field for sorting your data in report student name as field
been choosen (Fig 5.41). Click next button.
7. Select a layout for the report from the layout group (Fig 5.42).
Fig 5.41
DIGITAL LITERACY
Fig 5.42
8. Select orientation of the page from orientation group, click Next button. In the
dialog box that appears, choose a style you want for this report (Fig 5.43).
9. Click next button provide a title for the report and click Finish button.
Fig 5.43
The report will open as shown in the Fig 5.44.
Fig 5.44
Creating a Report using Blank Report Tool
Steps for creating this report are as follows:
1. Click create tab, in the report group, click Blank Report button.
A blank report is opened in Layout view along with the Field List Pane (Fig 5.45).
Fig 5.45
In the Field List pane, click the plus sign (+) against the table that contains the fields
to be include in the report(Fig 5.46).
Fig 5.46
DIGITAL LITERACY
To add a field to the report, double-click it. If you want to add tools in the report
like title, page numbers, etc., click under Format tab and in the controls group,
click the tool which you want.
After adding tool, the report will appear as shown in Fig 5.47.
Fig 5.47
SECTIONS OF A REPORT
The design of a report in Access 2007 has following sections (Fig 5.48)
Fig 5.48
Report Header: It is at the beginning of the report and contains information that
might normally appear on a cover page, such as a title.
Page Header: Presented at the top of every page. For example, fields of the table.
Group Header: Presented at the beginning of each new group of records.
Detail: Presented once for every row in the record source.
Group footer: Printed at the end of each group of records.
Page Footer: Printed at the end of every page. Use a page footer to print page
numbers.
Report Footer: Printed just once at the end of the report. Use the report footer to
print report totals or other summary information for the complete report.
PRINT PREVIEW A REPORT
Various steps to print Preview a report are as follows:
1. Click on the MS office button, menu appears. (Fig. 5.49)
Fig 5.49
2. Now, point the cursor in Print option (Fig 5.50), click on Print Preview.
3. Access switches to Print Preview
DIGITAL LITERACY
Fig 5.50
PRINTING A REPORT
1. Click on the MS office button, click on the Print option. A print dialog box
appears
(Fig 5.51). Provide the desired information before printing and click on OK
button to print the report
Fig 5.51
MICROSOFT POWERPOINT
Click on a desired layout from the choices that appear in the task pane. A discussion
of layouts follows in
the next section.
NOTE:
To return to Normal view at any time, go to View ->Normal.
Layouts, Text, and Slides
This section describes how to apply a layout; insert, format, and delete text;
and insert
and delete slides.
To apply a layout to your new slide:
Step 1:
Scroll through the available layouts in the “Slide Layout” task pane off to the right.
Step 2:
Click on the layout you would like to apply to your slides.
NOTE: You may change the layout of all or some of your slides at any point while
working on your
presentation. To apply a layout to only certain slides, select the slides you want in
the slide pane on the left,
and then go to the task pane on the right. Click the downward arrow button on the
right side of the layout
you want in the task pane on the right. You will get a menu that lets you choose
"apply to selected slides”.
To insert and format text in a slide:
Step 1:
Click inside a placeholder.
Step 2:
Enter text. You may use the formatting toolbar at the top of the PowerPoint window
to apply various formats
to your selected text. You may notice this toolbar is identical to the one used in
Microsoft Word.
Step 3:
When you are finished entering text, click outside the placeholder on some “empty
space.”
To delete text:
Option #1: Highlight the text you want to delete by dragging the cursor over the
letters, and press the delete
key.
Option #2: Click on the selection rectangle around the text so that its border
changes from hatch marks to
dots, and then press the delete key
To insert a new slide:
Option #1: Go to Insert->New Slide. A blank slide will appear in the workspace,
positioned after the selected
slide or slide you were viewing.
Option #2: Click on the "New Slide” button on the formatting toolbar at the top of
the PowerPoint window.
Option #3: On the Slides pane (off to the left), position your cursor to the point in
the presentation where
you would like the new slide to appear (i.e. between slides, at the beginning of the
presentation, or at the
end of the presentation). Right click, and choose “New slide” from the menu that
appears.
To delete a slide:
Option #1: Go to Edit->Delete Slide. The current slide will disappear from the
workspace.
Option #2: On the Slides pane (off to the left), click on the slide you would like to
delete, and then hit the
<Delete> key.
Design Templates and Images
This section describes how to use Design Templates to change the appearance
of your
slides. It also describes how to insert and manipulate images on your slide.
To change the design template:
Step 1:
Go to View->Task Pane. Verify that this option has a checkmark next to it. If it does
not, click once on the
"Task Pane" option.
Step 2:
DIGITAL LITERACY
You will see the current Task Pane on the right-hand side of the PowerPoint
window. This Task Pane should
be labeled "Slide Design". If it is not, click once on the directional arrow to the right
of the Task Pane title,
and select "Slide Design."
Step 3:
You will see a number of design templates displayed in the Task Pane. Use the
scrollbar to browse through
the available templates.
Step 4:
Click once on the design template you would like to apply to your presentation.
If you would like to apply the design template to only selected slides, mouse over
the desired template, and
click on the arrow button that appears on the left side of the template icon. From the
menu given, choose
Apply to Selected Slides.
To insert a picture into your presentation:
Option #1: If you have already saved the picture you would like to insert, go to
Insert->Picture->From File,
and navigate to your picture file. Select your file, and click “Insert”. Your picture
will appear on the current
slide.
Option #2: If you would like to insert clip art:
i. Go to Insert->Picture->Clip Art. You will see that the "Insert Clip Art" task pane
is visible on the
right side of the PowerPoint window.
ii. If you know what kind of clip art you want, enter a word that describes it in the
text box labeled
"Search Text," and hit <Search>. Otherwise, simply hit <Go>.
iii. Use the scrollbar to browse through available clip art.
iv. Click once on the clip art you would like to insert. Your clip art will appear on
the current slide,
with sizing handles visible.
To change the shape of a picture:
Step 1:
Move your cursor over the picture and click once to select it. You will see a number
of small circles appear
along the edge of the picture. These circles are called "sizing handles." There is also
one green circle, which
is used to rotate the image.
Step 2:
Click on one of the sizing handles that appears on a side of the picture, hold the
mouse button down, and
drag the handle to change the shape of the picture. Your pointer will be a double-
sided arrow when you are
directly over a sizing handle. You are distorting the picture by stretching or
squishing it.
Step 3:
Release the mouse button when you have achieved the desired shape.
To change the size of a picture:
Step 1:
Move your cursor over the picture and click once. You will see the sizing handles
described above.
Step 2:
Click your cursor on one of the sizing handles that appears on the corner of the
picture, hold the mouse
button down, and drag the picture to make it smaller or larger. Using these corner
handles maintains the
original proportions of the image (it does not stretch or squish).
Step 3:
Release the mouse button when you have achieved the desired size.
To move a picture:
Option #1: Using the mouse:
i. Move your cursor over the picture until the cursor looks like this .
ii. Click the mouse button, hold the button down, and drag the picture to change its
location.
iii. Release the mouse button when you are satisfied with the location of the image.
Option #2: Using the direction arrow keys:
DIGITAL LITERACY
Line Color: similar to fill color, line color lets you assign color to lines in your
slide. You may apply line color
to line objects, or to the lines around selected shapes or text boxes.
Text Color: this lets you assign color to text in a selected text box.
Line, Dash and Arrow Style: these tools let you change the weight (how thick or
thin), the solidity (dashes
or dots) and the endpoints (arrows, circles, diamonds) of a selected line.
Views and Printing
This section describes how to use different views in PowerPoint. It also
describes how to
print your presentation.
PowerPoint allows you to view your slides in different ways to make it easier to
manipulate
the content of your presentation. It also allows you to add notes to accompany
the slides
in your presentation which are helpful for creating handouts.
To manipulate your slides in "Slide Sorter" view:
Step 1:
Go to View->Slide Sorter.
Step 2:
To rearrange slides, click on the slide you wish to move, hold down the mouse
button, and move
the object to a new location in the presentation (between slides, at the beginning or
at the end).
Lift up on the mouse button when you are satisfied with the new location. A vertical
line between
the slides indicates the position to which you are moving the slide.
Step 3:
To return to Normal view, go to View-> Normal.
To add notes to your presentation:
Step 1:
Go to View-> Normal.
Step 2:
You will see a frame at the bottom of the PowerPoint window labeled "Click to add
notes." Click
once in this window and add text.
To print your presentation:
NOTE: You should always preview before printing, so that you don't waste
paper or pay
for printouts you did not want.
Step 1:
Go to File->Print Preview. You will be shown a preview of how your printed
document will look
like.
Step 2:
If you are satisfied with the appearance of your document, click on the "Print"
button at the top left
of the preview window. Otherwise, click on the "Close" button and make any
necessary changes.
Choosing Options in the Print dialog box:
Step 1:
In the Print dialog box, you will see a "drop-down" menu labeled "Print what:” You
can choose
from Slides, Handouts, Notes Pages, and Outline View. You can preview what each
one of these
looks like by clicking the <Preview> button in the lower left corner of the Print
dialog box.
Step2:
You also have the ability to choose which slides to print in the Range section of the
dialog box,
and how many copies in the Copies section of the dialog box.
Step 3:
Click the <OK> button to print.
To print your presentation with your notes displayed:
Step 1:
Go to File->Print Preview
Step 2:
DIGITAL LITERACY
In the drop-down box labeled "Print what:" change the text to read "Notes Pages."
Step 3:
If you are satisfied with the appearance of your document, click on the "Print"
button. Otherwise,
click on the "Close" button in the Print Preview dialog box and make any necessary
changes.
Displaying your Presentation on the World Wide Web
This section describes how to make your presentation viewable on the World
Wide Web.
NOTE: before you begin, you must create a folder entitled "public_html" in
your directory on the
iSchool server. If you have not already done this, consult the iSchool tutorial
“How-to Publish
Web Pages” or contact a “purpleshirt” for help.
To save your presentation as a web page:
Step 1:
Go to File->Save as Web page.
Step 2:
In the drop-down box labeled "Save in," select the folder where you would like to
save your web page presentation.
Users often find it easiest to save their presentation to the Desktop.
Step 3:
Type a name for your file in the box labeled “File Name.”
Step 4:
In the “Save as type” box, choose either “Single File Web Page,” which saves
everything as one file, or “Web Page,”
which saves your files in several associated folders.
Step 5:
Click the button labeled "Save."
Optimizing for different browsers in step 5:
NOTE: There are several options for saving and publishing your web page.
Please consult the
Help menu in PowerPoint for more details.
When you publish your presentation to the Web or save it as a Web page, your
presentation automatically includes
the following: `
1. A navigation frame, which is the outline of the presentation.
2. A slide frame.
3. A control for showing or hiding the outline of the presentation.
4. A control for showing or hiding the notes pane.
5. A full-screen viewing option.
To upload your presentation to the iSchool server:
Step 1:
Start a FTP (File Transfer Protocol) program. FTP programs are generally available
from the Start menu. If you need
help doing this, consult the iSchool tutorials on SSH or Fugu.
Step 2:
Log on to your FTP program.
Step 3:
Locate your web page presentation and any files associated with it.
Step 4:
Select ALL the files and folders associated with your presentation. Drag them to the
public_html folder displayed in
the FTP session.
To verify that your presentation is displaying correctly:
Step 1:
Open a Web browser (e.g. Microsoft Explorer or Netscape Navigator).
Step 2:
In the address bar, enter the following:
[Link] userid)/(your presentation name)
Be sure that you have included the correct extension in your filename.
• Presentation saved as Web Page: .htm or .html extension
• Presentation saved as Single File Web Page: .mht or .mhtml extension
• Presentation saved as Presentation: .ppt extension
Step 3:
Your web page should appear. If not, verify that you have entered the correct
address in the address bar.
DIGITAL LITERACY
Why use Publisher over Word? Both Publisher and Word have templates
offering similar types of publications. However, Publisher gives a wider variety
of templates and more control over the page design. Plus Publisher contains
hundreds of sample layouts that you can easily modify.
Objectives
Main features of the Publisher Window
Working with Text
Connecting Text Boxes
Spacing of Characters, Lines and Paragraphs
Add a Drop Cap
Add Guides
Insert Items
Group and change the Orientation of Objects
Text Wrapping
Use the Spell Checker
Save a File
Set up Auto Recovery
Closing and Opening files
Print a Publication
1. Publisher Basics
• Useful Definitions
• Open Publisher
• Create New Publications
2. Projects:
• Create a Calendar
3. Save Your Publication
DIGITAL LITERACY
Microsoft Publisher 2007 is a desktop publishing program that can be used to create a
variety of publications. Using Publisher, you can easily create business cards, greeting
cards, calendars, newsletters and much, much more.
Unlike the other programs in Microsoft Office 2007, Microsoft Publisher 2007 uses the
Microsoft Office Toolbar and a Menu system in place of the Microsoft Office Ribbon.
Some Useful Definitions:
Frame – Most publications are divided into several different areas called frames.
A frame can contain a variety of objects such as graphics, tables, or text boxes.
Frames can be resized, moved and manipulated to suit your needs.
Handles – When you click on a frame, small circles appear around the edge of
the frame. These are called handles. You can click and drag on the handles to
resize your frame.
Picture Frame
Text Frame
Handl
es
Opening Publisher
To Open Publisher either:
Double click on the Microsoft Publisher Icon on your desktop, OR
‐OR
Click on Start in the lower left hand corner of your desktop, move up to
Programs, and then click on Microsoft Publisher
DIGITAL LITERACY
When you first open Publisher, Publisher offers you a number of different publication
types to start with.
Click on one of the publication types in the main window or in the list on the left side of
the main window to view a list of templates that will walk you through the process of
making basic design choices for your publication. These choices include color schemes,
font styles, and more.
Creating a Calendar
To Create a Calendar:
1. Open Microsoft Publisher by double clicking the icon on the desktop or finding
it under the start menu.
2. Click on Calendars from the main window or the list on the left. A selection of
pre‐ designed templates appears for you to choose from.
3. Click on one of the pre‐designed templates that you like. It will appear at the top of
the area on the right side of the page.
4. You can either stick with the default design choices that are part of the template, or
you can customize them by clicking the downward pointing arrow to the right of a
design section and choosing any of the options provided by clicking on it.
5. Click on the Set Calendar Dates button and choose the period of time that you
would like your calendar to cover.
6. Click on Create at the bottom to create your caledar.
Now that you have made your basic calendar selections, it is time to further customize
the publication.
Customizing a Publication
Moving Frames
To move a text frame,
1. Click on the text frame.
To move a picture frame,
2. Rest your cursor near the border of
1. Click on the picture. the text frame. When your cursor
2. When your cursor turns into a four directional arrow,
turns into a four click and drag the text frame to the
directional arrow, desired location.
click and drag the
picture frame to the
desired location.
Align
Left | Center | Right | Font
Font Type Font Size Justified Fill Color Color
text’s appearance.
DIGITAL LITERACY
Undoing Changes
Creating a publication often involves trial and error. Unlike many of Microsoft
Office’s other applications, in Publisher you cannot preview what a change is going to
look like until you apply it.
To undo actions, click on the undo button on the standard toolbar or click on
Undo in the Edit Menu.
Search Limiter
Drop down
menu options
Click on the print icon on your toolbar . This will print one copy of
your publication with the default print options.
‐OR
1. Click on the File Menu and click Print.
2. When the print window appears, select the desired number of copies and
choose any other printing options you want.
3. Click OK.
1. Open Microsoft Publisher by double clicking the icon on the desktop or finding
it under the start menu.
2. Click on Publications for Print then Business Cards, and finally Accent
Box Business Card.
3. In the personal information form that opens, enter your
own contact information and click on OK. (If you
accidentally close your personal information and you
want to edit it further, click on the Edit Menu and
Personal Information to retrieve the form.)
4. In the task pane on the left side of the window, you are
given different options you can adjust. As you click on
the different steps at the top of the task pane, the
options change on the lower part of the task pane.
5. Click on Business Card Options.
a. Choose to Include a logo.
b. Choose the traditional
Landscape orientation
c. Choose to have Multiple copies per
sheet
6. Click on Publication Designs.
a. Leave the selected Accent Box.
b. Click on Color Schemes and select the desired color scheme.
7. Click on Font Schemes and select the desired font scheme.
Now that you have completed the Business Card Wizard, you can customize the
business card. Change the format or insert additional clip art, if you wish.
1. Open Publisher by double clicking the icon on the desktop or finding it under
the start menu.
2. Click on Publications for Print Greeting Cards Birthday Birthday Card
72
3. Click on Greeting Card Options
a. Select Greetings Bar.
b. Select Full Verse
c. Click on Select a suggested verse.
A dialog box will open click on a
verse on the left side and on the
right side it will show you the front
message and the inside message.
Select the verse you would like to
use and click on OK.
i.
4. Click on Page Options
a. Choose the Quarter page side
fold option.
5. Click on Card Gallery
a. Leave Birthday 72 selected.
6. Click on Color Schemes
a. Select the desired color scheme.
7. Click on Font Schemes
a. Select the desired font scheme.
8
DIGITAL LITERACY
Now that you have completed the Greeting Card Wizard, you can customize the
greeting card.
At the bottom of the screen are sheets with numbers on them (1, 2, 3, 4). Click on 1 to
see the front of the card. Click on 2 or 3 to see the inside of the card. Click on 4 to see
the back of the card.
If you have a question about Word that you need answered right away, you might want to
consult Microsoft PowerPoint 2007’s built in help feature. You can access this feature in
PowerPoint by pressing the F1 key on your computer keyboard. From there you can click
on a help topic or search for one using PowerPoint’s help search box located near the top
of the PowerPoint Help window.
Help Help
Search Topics
Box
9
COMPUTER APPLICATION 1
ASSIGNMENT
The following is a list of students and the marks they scored in various subjects:
ABCD
1 NAMES BIOLOGY HISTORY COMPUTER
2 Musa 43 45 65
3 Abdi 43 54 87
4 Baraka 89 98 78
5 Scots 25 54 98
6 Hamata 27 32 26
Required:
a) Write the formula to perform the following operations
i. Calculate the total marks for Hamata (2 marks)
ii. Calculate the average score for Baraka (2 marks)
iii. Calculate the highest score for Musa (2 marks)
b) Write the formula to count all the computer students with marks greater than 60.(3marks)
c) Give the functions of the following types of charts: bar graph, line graph,pie chart
and scatter chart. (4 marks)
d) List any two data management tools in spreadsheets. (2 marks)
8. You have just started the Microsoft Word program and discovered that the Drawing
toolbar and the Rulers are not displayed. Describe how you would display them. (3 marks)
9. Describe the use of each of the following commands in saving a document.
i. Save (1 mark)
ii. Save As (1 mark)
QUESTION THREE-(20 MARKS)
1. Create a worksheet with the following data:
Volkswagen Group
PSA Group
Renault Group
Take into account that Volkswagen remained Europe’s strongest car manufacturer and top-
selling car brand with 60% percentage of sales. The French PSA Group was the second
selling car brand in Europe in 2010 with 25% percentage of sales, while Renault was the third
selling car brand in Europe, 15% percentage of sales.
Create a column chart (4 marks)
Apply a Chart Layout (2 marks)
Add labels (2 marks)
Switch data (2 marks)
2. Differentiate between a standard toolbar and a formatting toolbar. (2 marks)
3. Digital computers are termed as Two-State Machines. Explain. (2 marks)
4. State two orientations used in Ms-Word. (2 marks)
5. Explain two disadvantages of using spreadsheets. (2 marks)
6. Explain the function of the following elements as used in Ms-Excel. (2marks)
(i)Cell pointer
(ii)Worksheet tabs.
93
COMPUTER APPLICATION 1