ITLABMANUAL
ITLABMANUAL
PRACTICAL 5
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
Solution:
1|Page
1. Creating styles for Heading and Quote
➢ Open Styles and Formatting dialog box by clicking Format Styles and Formatting
➢ Type the desired names. For example Dream Heading for heading and DreamQuot for
Quote
➢ Select the given formatting from the update style dialog box.
➢ Click on OK
➢ Now select the fill format icon from the dialog box
2|Page
Learning Outcome – Insert and Use Images in digital document
PRACTICAL 6
Solution:
Steps:
7. Right Click on the shape and choose Wrap Optimal Page Wrap option.
4|Page
Solution 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.
5|Page
7. Save the file.
8. Now click on File Templates Save to mark your document as template.
Set up a custom default template in OO writer
1. Click on File → Templates → Organize.
2. Choose the folder of template.
3. Select desired template to set as default template.
Task: Prepare a document with different headings and apply a table of contents to it.
6|Page
Solution:
1. Type the contents.
2. Apply appropriate level of headings from the Styles and Formatting window.
7|Page
3. Click on Insert Indexes and Tables Indexes and Tables.
5. Click on OK.
DATABASEMANAGEMENT SYSTEM
PRACTICAL 9
Define structure of your table name Teacher in OpenOffice
base in design view
Field name Data type
Tracheid Integer
First name Varchar
Lastname Varchar
Address Varchar
DOB Date
Phone Integer
Solutions:
Step 1: Open OpenOffice Base.
Step 2: In database window click on Table tab
Step 3: Now click on Create Table in Design View
Step 4: The design view of table opens. Enter the field and data
types which are given.
Step 5: Click on save button from interface. Give Teacher name to
the table. Right click on Tracheid field and make primary key.
Step 6: Take printout and attach to sheet.
8|Page
Step 7: Close the Design View and open Datasheet view of
Teacher Table.
Step 8: Enter Record of at least 5 Teacher in this table.
Step 9:Take printout and attach to sheet.
9|Page
PRACTICAL 10
Write Query to create Table with the following structure:
Field Datatype
Pid Char(4)
Pname Varchar(20)
Description Varchar(20)
Price Decimal
Solutions:
Create Table product (
Pid Char(4) Primary key,
Pname Varchar(20),
Description Varchar(40),
Price Decimal);
10 | P a g e
PRACTICAL 11
Consider the following table named GYM with details about
fitness items being sold in the store. Write command to do
following:
Table: GYM
ICODE INAME PRICE BRANDNAME
G101 Power fit 20000 Power gym
exercise
G102 Aquafit hand 1800 Reliable
grip
G103 Cycle bike 140000 Ecobike
G104 Protomer 30000 Coscore
extreme gym
G105 Massage belt 5000 Massage
expert
G106 Cross trainer 13000 Gtc fitness
11 | P a g e
(iii) SELECT ICODE, INAME FROM GYM WHERE BRANDNAME=
“Reliable”;
(iv) UPDATE GYM SET BRANDNAME= “FIT TREND INDIA” WHERE
ICODE=”G101”;
(vi) INSERT INTO GYM VALUES ( “G107”, ”Vibro exerciser”,
21000, ”GTCFitness”);
PRACTICAL 12
Consider the following table Datesheet. Write command to do
following:
Solutions:
Solutions: (i) Select *from Datesheet order by DateofExam;
12 | P a g e
(ii)Select * from Datesheet;
(iii) Select Sub_Name,DateofExam from Datesheet where
Days=”Monday”;
(iv)Select Sub_Name, DateofExam from Datesheet where
Sub_Name=”Science”;
1.
13 | P a g e