It Practical
It Practical
(402)
PRACTICAL FILE
2024-2025
AIM:To . Explain the styles given in the Styles and Formatting Window for writer and paste the screen
shot of the window also.
PROCEDURE:
STEP1:Open the Libre Office Writer
STEP2: Use STYLES menu (OR) PRESS F11
1. Page styles
2. Paragraph styles
3. Character styles
4. Frame styles
5. Numbering styles
6. Cell styles
7. Graphics styles
8. Presentation Styles
Page styles: Include margins, headers and footers, borders and backgrounds. In Calc, page styles also
include the sequence for printing sheets.
Paragraph styles: control all aspects of a paragraph’s appearance, such as text alignment, tab stops, line
spacing, and borders, and can include character formatting.
Character styles: affect selected text within a paragraph, such as the font and size of text, or bold and
italic formats.
Frame styles: are used to format graphic and text frames, including wrapping type, borders, backgrounds,
and columns.
Numbering styles: apply similar alignment, numbering or bullet characters, and fonts to numbered or
bulleted lists.
OUTPUT:
RESULT:
Thus the styles and the styles and formatting window was explained with screen shot
EX:NO-2: CREATING A NEW STYLE
OUTPUT:
RESULT: Thus the new style has been created in libre office writer and output was verified successfully.
EX:NO-3: CREATING A TEMPLATE
PROCEDURE:
STEP-1: open a new or existing document of the type you want to make into a template (text
document, spread sheet, drawing, presentation); STEP-2:Add the content and the styles that you
want.
STEP-3: From the main menu, choose. file->template->save
STEP-4:To make a template as a default choose”file->template->organize->set as default”
OUTPUT:
RESULT:
Thus the template was created in libre office writer and output was verified successfully.
EX.NO-4 : TO DO MAIL MERGE
AIM: To create letter and send to many recipient with the help of mail merge.
PROCEDURE:
STEP-1: open a new or existing document of the type you want to send to recipient. (presentation);
STEP-2:Add the content and the styles that you want.
STEP-3: From the main menu, choose. Tools->mail merge wizard
STEP-4:There were 8 steps to complete the mail merge
STEP-5:Select the starting document
STEP-6:Select the document type
STEP-7:Insert the address block
STEP-8:Adjust layout
STEP-9:Edit the document.
STEP-10: Personalize the document.
STEP-11: Save, print or send
OUTPUT:
RESULT: Thus the letter was typed and it was send to many people with the help of mail merge and the
output was verified successfully.
EX.NO-5: INSERT AND USE IMAGES IN DIGITAL DOCUMENT
AIM : To insert images and shapes and rearranging them in Libre Office Writer.
PROCEDURE:
7. Right Click on the shape and choose Wrap Optimal Page Wrap option.
OUTPUT:
RESULT:
Thus the images and text were arranged in Writer and output was verified
successfully.
EX.NO-6: CREATE AND CUSTOMISE TABLE OF CONTENTS
AIM: To Prepare a document with different headings and apply a table of contents to it.
PROCEDURE:
2. Apply appropriate level of headings from the Styles and Formatting window.
5. Click on OK.
OUTPUT:
RESULT:
RESULT: Thus the consolidating of data was done and output was verified successfully.
EX.NO-8: CALCULATE SUBTOTAL
PROCEDURE:
STEP-1: Open a new file in Libre Office Calc
STEP-2: Write the following data
STEP-3: Click on Data → subtotal.
STEP-4: Select Columns in the Group By options and also the required functions.
STEP-5: Click ok
RESULT: Thus the SUBTOTAL of data was done and output was verified successfully.
PROCEDURE:
STEP-1: Open a new file in Libre Office Calc
STEP-2: Write the following data and select the formula cell.
STEP-3: Click on Tool → Goal seek. Goal Seek dialog box will be opened.
STEP-4: Select the Formula cell and give target value in the Target value text box.
STEP-5: Type Variable cell address and click ok.
PROCEDURE:
STEP-1: Open a new file in Libre Office Calc
STEP-2: Write the following data and select the cell.
STEP-3: click on Tool → Scenario.
STEP-4: Name your Scenario and select different color.
STEP-5: Click ok
STEP-6: Similarly create two more scenarios and name them.
SCENARIO-1 SCENARIO-2
RESULT: Thus the SCENARIO of data was done and output was verified successfully.
EX.NO-11: RECORD MACRO
PROCEDURE:
STEP-1:Open a new file in calc.
STEP-2: Enter the following data.
STEP-3 : Select cell A3, which contains the number 3, and copy the value to the clipboard.
STEP-4: Select the range A1:C3. 5. Use Tools > Macros > Record Macro to start the macro recorder.
STEP-5: The Record Macro dialog is displayed with a stop recording button.
STEP-6: Use Edit > Paste Special to open the Paste Special dialog.
STEP-7: Set the operation to Multiply and click OK. The cells are now multiplied by 3.
STEP-8: Click Stop Recording to stop the macro recorder. The Macros dialog opens and save the
macro at specified place with a particular name.
STEP-9: Now macro is ready to use.
RESULT: Thus the Macro was recorded and output was verified successfully.
EX.NO-12: CREATING TABLE
AIM: To Write the steps to create table with minimum five fields on an entity "STUDENT" in design
view
PROCEDURE:
STEP-1: Click on Create Table in Design View… option available under Tasks
STEP-2: Specify the field name and data type of the field to be created
STEP-3: 3. In the gray box at the left of the line, right-click and select Primary Key, bringing up a key
icon in the box
STEP-4: Save the table (File > Save)
RESULT:Thus the table was the created in the design view and the output was verified successfully
EX.NO-13: WRITING COMMANDS
COMMANDS:
RESULT: Thus the command has been written and the output was verified successfully.
EX.NO-14: USING COMMANDS
AIM: To write a query to create table and work with insertion, deletion, and updating commands
COMMANDS:
CREATE:
create table “stinfo”(“roll no” tiny int primary key,”name” varchar(100));
INSERT:
insert into “stinfo”(“roll no”,”name”)values(‘1’,’reka’); insert into
“stinfo”(“roll no”,”name”)values(‘2’,’reshu’);
DELETE:
delete from “stinfo” where “roll no”=’1’;
UPADTE:
update “stinfo” set “roll no”=’3’ where “name”=’reshu’;
OUTPUT:
Roll no Name
1 Reka
3 reshu
RESULT:
thus the table was created and worked with insert, delete and update commands.