DOC-20241122-WA0056.
DOC-20241122-WA0056.
DOC-20241122-WA0056.
document
Assignment 1
Objective: Using various commands to create styles in OO Writer.
Task: Type a paragraph with at least 100 words and create below given styles as
instructed:
1. Heading: Font name: Font name: Times New Roman, Size: 24 , Colour: Red.
Give the style name: Dream Heading (Use create style from selection command to
create style)
2. Paragraph: Apply Style Text Body from the Style Gallery
3. Quote: Font Name: Broadway, Size:16, Colour: Blue, Alignment: Center. Give
the style name: DreamQuot
Learning Outcome – Insert and Use Images in digital
document
Assignment 2
Objective: Inserting images and shapes and rearranging them
Task:
1. Create a new document in OO Writer and Type a paragraph.
2. Insert a picture of your choice.
3. Adjust the picture at top left to the paragraph.
4. Insert some shapes and write additional text into the shapes.
Steps:
1. Open OO Writer and Type the paragraph.
7. Right Click on the shape and choose Wrap Optimal Page Wrap option
Learning Outcome - Create and use template
Assignment 3
Task:
• • Prepare a template for the application writing format.
• • Apply formatting as required.
• • Set this template as a default template.
• • Change the default template to custom template. Change the formatting as
you wish.
Application Letter Template Contents
1. Insert the shape for school logo.
2. Type School Name and Address as displayed in the screen shot.
3. Type Subject line.
4. Type the matter required for the application as displayed in above screen shot.
5. Apply formatting as your wish.
6. Click on Format Page option. Page Style dialog box will open.
7. Save the file.
8. Now click on File Templates Save to mark your document as template.
1. Click on File → Templates → Organize.
2. Choose the folder of template.
3. Select desired template to set as default template.
\
Learning Outcome – Create and Customize Table of
Contents
Assignment 4
Task: Prepare a document with different headings and apply a table of contents
to it.
Solution:
1. Type the contents.
5. Click on OK.
5. IF you want to adjust your content you adjust you increase the left and the top
bar. Click on next button.
6. Edit document, Click the edit document option to edit you can apply to your
document, if necessary. Click on next button.
7. Click on Edit individual document. If you want to edit or click on Next
button
8. Click on Then, at last, you will get the final step to save, print or send the
merged document.
9. Click on save merged document. Then click on Save as individual documents
Learning Outcome Analyze data using scenarios and goal seek
Assignment 1
Objective: Applying Data Consolidation in OO Calc
Task:
1. Create a new file in spreadsheet software and enter data for 10 salesmen.
2. Add two worksheets in the file and modify the data for all 3 quarters.
3. Rename all worksheets like sheet1 - 2018, sheet2 - 2019 and sheet3 - 2020.
4. Now add one more worksheet at the end and rename as consolidated sheet.
5. Now type the serial no and names as displayed, use sum function to add data for
2018, 2019 and 2020 in respective cells using consolidation.
Solution:
1. Create a new spreadsheet in OO Calc.
2. Enter the data for Sheet 1 and rename sheet as 2018. To rename the worksheet
right click on sheet tab then type the desired name. Press enter key to accept the
name.
Solution:
1. Open spreadsheet software and enter the data as following:
2. Select the data. Needs to be grouped using subtotal.
4. Select column in Group By option then mark the column to count the frequency
for the category and finally select the count function as displayed the following
screenshot.
5. Click on OK button.
Assignment 3
Objective: Link data and Spreadsheet
Task: Prepare a worksheet as following
1. Enter the data such as Roll no, GR NO, First Name, Last Name, Date of Birth,
Father Name, Mother Name. Enter records for at least 10 students.
2. Rename this worksheet as "Student Profile".
3. Insert 3 new worksheets and rename as "Periodic Test I", "Periodic Test II"
and "Periodic Test III" respectively.
4. In the Periodic Test I worksheet create a reference for Roll No, First Name, and
Last Name columns from Student Profile by using the keyboard.
5. In the Periodic Test II worksheet create a reference for Roll No, First Name,
and Last Name columns from Student Profile by using the mouse.
6. In the Periodic Test III worksheet create a reference for Roll No, First Name,
and Last Name columns from Student Profile as you wish.
Setting up worksheets
1. Open spreadsheet software and type the required data as given in the
question.
2. Right click on Sheet tab, choose rename option. Now type “Student Profile”.
3. Click on Insert Sheet option three times and rename them respectively.
Creating Reference
1. Open Periodic Test I worksheet and place the cursor in the first cell.
2. Now type =.
3. Then move or select the student profile and select the cell where roll no is
written.
Solution
1. Create a new worksheet and enter data.
2. Click on File Save and Use proper name for the worksheet.
4. The Share Document dialog box will appear. Click on Share this spreadsheet
with other users.
5. Click OK button.
Assignment 5
Objective: Goal seek Application
Task: A student is planning her goals about the marks she should attain in the
forthcoming examinations in order to achieve a distinction (75%). Assuming that
the examination of each subject is for 100 marks, her marks of PT 1 and Term 1
are given as under.
Solution:
2. Place the cursor to get the result for the marks of term 2.
2. OO Base window will open with Database Wizard. Select or create the database
to work
upon it. I have selected existing database db1. Click on Finish button
3. Now click on Tables button from Left pane and choose Use Wizard to Create
Table… option from the tasks window.
4. The Table Wizard will open. Follow wizard steps to create a table.
5. In first step of wizard select the Category either Business or Personal, Table
from list of sample tables, and fields from available fields. Click on Finish button.
6. Click on Next and select field types and all if you want to change it. Click on
Next.
7. Set a primary key for your table in this step. I have selected EmplyeeID as
Primary key
8. If you wish to change the table name then type new name for the table and click
on Insert Data immediately, and click on Finish.
9. Insert data
1. In the Database file Add these Fields: (Total: Datatype- Number 3 digits,
Percentage: Datatype - Number 3 digits with 2 decimal places, Grade: Datatype-
Char with 2 letters)
2. Insert more 3 records in MARKSHEET using SQL mode.
3. Display name, rollno, marks of 3 subjects, total and percentage using design
view.
4. Display name, rollno, grades from the marksheet table using query wizard.
5. Display the maximum marks for Sub101 and minimum marks for Sub102 using
design view.
6. Display the rollno, name and percentage whose percentage are more than 70
using design view.
7. Display all the record in ascending order of names using design view.
Solution
Create table command
create table “marksheet” (“Stud_no” tinyint primary key, “Name” varchar(15),
“RollNo” tinyint, “Sub101” decimal(5,2), “Sub102” decimal(5,2), “Sub103”
decimal(5,2))
Output
Queries
1. Add Columns 1. Add column Total alter table "marksheet" add column
"Total" tinyint
2. Add column Percentage alter table "marksheet" add column "Percentage"
decimal(5,2)
3. Add column grade alter table "marksheet" add column "Grade" char(2)
2. Insert records 1. insert into "marksheet" values (101, 'Sagar', 105, 27, 25, 28, 80
, 88 , 'B1')
3. Steps to perform a query using design view 1. Click Queries Create Query
in Design View….
2. The query design window will open.
3. Select the marksheet table and click on Add button.
4. Now select fields given in the question like name, rollno, marks,Sub101,
Sub102, Sub103, Total and Percentage
4. Click on finish.
Output
5. Display maximum marks and minimum marks for the fields given in the
question, using design view. 1. Click Queries Create Query in Design View….
5. Choose the function maximum under Sub101 and Minimum under Sub102.
6. Save the query and check the result.
6. Display the rollno, name and percentage whose percentage are more than 70
using design view 1. Click Queries Create Query in Design View….
4. Select columns given in the question i.e. Rollno, Name and Percentage.
Output
7. Display all the record in ascending order of names using design view. 1. Click
Queries Create Query in Design View….
2. The query design window will open.
3. Select the marksheet table and click on Add button.
4. Select markesheet.* and name in the column list.
5. Select sort ascending under name field.
6. Now click on Visible checkbox to hide the name column in result.
Output
Learning Outcome – Create Forms and Reports using wizard
Assignment 3
Objective: Creating form using wizard
Task: Create table a form using wizard by selecting all the fields for the table -
Marksheet
Solution
Steps to create a form using wizard
5. Select the first option i.e. Columnar – Labels Left then click on the next button.
6. Now set data entry step will be there. Ignore this step and click on Next. Choose
Assignment 4
Objective: Creating report using wizard
Task: Create table a report using wizard by selecting all the fields for the table -
Marksheet
Solution
1. Click on Reports Use Wizard to Create report. The report wizard will open
in the new window.
2. Select the table and add fields
3. Now change the label text that you want in the report. I have changed the label
Stud_no into Adm. No. Click on Next.
4. I have skipped groping and sorting options by click on Next button.