It Study Guide
It Study Guide
1. Formatting a Document
Cut, Copy, Paste: Basic functions for text and objects manipulation.
Cut removes the selected text or object and places it on the
clipboard.
Copy duplicates the selected text or object onto the clipboard
without removing it from the document.
Paste inserts the content from the clipboard into the document
at the cursor's position.
Picture/Icon/Shapes Insertion: Adding visual elements to enhance
the document's appearance. This includes inserting images, icons, and
shapes.
Header, Footer, Footnotes: Used to include repetitive or
supplementary information.
Header appears at the top of every page.
Footer appears at the bottom of every page.
Footnotes provide additional information at the bottom of the
page where the reference is made.
Tables: Organizing data in rows and columns.
Fonts, Bold, Italics, Underline: Styles to format text for emphasis.
Fonts define the appearance of text.
Bold makes the text darker and thicker.
Italics slant the text to the right.
Underline adds a line beneath the text.
Margins: Space around the edges of the document.
Use of Header & Footer: Inserting and customizing headers and
footers.
Find and Replace: Locating specific text and replacing it with new
text.
Printing, Page Number Format, Orientation: Preparing a
document for printing.
Page Number Format: Customizing the appearance of page
numbers.
Orientation: Setting the page layout to portrait or landscape.
Mail Merge: Creating personalized documents by combining a
standard template with a data source.
Auto Table of Contents: Automatically generating a table of
contents based on the document’s headings.
Fillable Forms: Creating interactive documents that users can fill out
electronically.
Spreadsheets
2. Formatting a Document
4. Formulas
5. V Lookup Functions
Searches for a value in the first column of a table and returns a value
in the same row from a specified column.
6. Sorting
7. Absolute Referencing
8. Charts
9. Filtering
Database
11. Tables
12. Reports
13. Queries
16. Forms
Theory
18. Different User Interfaces
24. Flowcharts
Exercises
Word Processing
Spreadsheets
2. Exercise: Create a pie chart showing the distribution of sales for five
products.
Instructions: Enter the sales data for five products, select the
data, and create a pie chart.
Database
2. Exercise: Create a query to find all students with a grade above 85.
Instructions: Use the query feature to search the student table
for records where the grade is greater than 85.
Theory
1. Which function would you use to add all the numbers in a range?
a) SUM
b) AVG
c) COUNT
d) MIN
Answer: a) SUM
Structured Questions
Answer: To create a fillable form in a word processing document, you start by designing
the layout of the form, including text boxes, checkboxes, drop-down menus, and other
form controls. Use the form tools available in the word processing software to insert
these controls into the document. Configure the properties of each control, such as its
name, data type, and validation rules, to ensure the form collects the necessary
information correctly.
3. What are the key components of a database table, and what role do they play?
Answer: The key components of a database table are fields (columns) and records
(rows). Fields define the structure of the table by specifying the data type and name for
each piece of information stored in the table (e.g., ID, Name, Age). Records are the
actual data entries that populate the table, with each record representing a unique
instance of the data structure defined by the fields (e.g., a specific person's information).
4. Outline the steps involved in writing a simple Python program to calculate the sum of two
numbers.
Answer:
2. Define two variables to store the numbers (e.g., num1 and num2).
3. Use the input() function to take input from the user for each number.
5. Calculate the sum of the two numbers and store the result in a new variable
(e.g., sum).
python
Copy code
# Example Python Program num1 = int(input("Enter the first number: ")) num2 = int(input("Enter the
second number: ")) sum = num1 + num2 print("The sum of the two numbers is:", sum)