Grade 10 Practical Notes
Grade 10 Practical Notes
PRACTICAL
FILE
(CLASS X)
Name: Birkanwal
Class : X-B
Roll No : 22
TOPIC: Explain the styles given in the Styles and Formatting Window
1. Page styles
2. Paragraph styles
3. Character styles
4. Frame styles
5. Numbering styles
6. Cell styles
7. Graphics styles
8. Presentation Styles
OUTCOME:
Thus the styles and the styles and formatting window was explained with screen shot
TOPIC:Write the steps to create new style in Open Office Writer.
PROCEDURE:
STEP-1:Open the Styles and Formatting window and choose the type of style you want to
create.
STEP-2: In the document, select the item you want to save as a style.
STEP-3: In the Styles and Formatting window, click on the New Style from Selection icon
STEP-4: After Clicking on New Style from Selection, create style dialog box appear.
STEP-5: Write the name for the new style and click on OK
OUTPUT:
RESULT: Thus the new style as been created in open office writer and output was verified
success fully.
TOPIC: Write steps to create 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”
RESULT:
Thus the template was created in open office writer and out was verified successfully.
TOPIC:Write the steps to consolidate data of two sheets
PROCEDURE:
STEP-1: Open a new file in Open Office Calc and write the following data :
STEP-2:Open another file in Open Office Calc and write the following Data
STEP-3:Open the third sheet and click on Data → Consolidate. The following dialog box appear
STEP-4: Click to select Source data range of first sheet and then click on Add button.
STEP-5:After adding Source data range from both the sheets,
RESULT: Thus the consolidating of data was done and output was verified successfully.
TOPIC: Write the steps to do subtotal in Open Office Calc .
PROCEDURE:
STEP-1: Open a new file in Open Office Calc
STEP-2: write the following data
STEP-3: click on Data → subtotal.
RESULT: Thus the SUBTOTAL of data was done and output was verified successfully.
TOPIC: Write the steps to goal seek in Open Office Calc .
PROCEDURE:
STEP-1: Open a new file in Open Office Calc
STEP-2: write the following data and select the formula cell.
STEP-3: click on Tool → goal seek.
RESULT: Thus the GOAL SEEK of data was done and output was verified successfully.
TOPIC: Write the steps to do Scenario in Open Office Calc .
PROCEDURE:
STEP-1: Open a new file in Open Office Calc
STEP-2: write the following data and select the cell.
STEP-3: click on Tool → Scenario.
SCENARIO-1 SCENARIO-2
RESULT: Thus the SCENARIO of data was done and output was verified successfully.
TOPIC: Write the steps to record Macro in open office calc.
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 OpenOffice.org Basic Macros dialog
opens and save the macro at specified place with a particular name.
RESULT: Thus the Macro was recorded and output was verified successfully.
TOPIC: Write the steps to create table with minimum five fields on an entity
"STUDENT" in design view
AIM: To Write the steps to create table with minimum five fields on an entity
"STUDENT" in design view
PRODUCER:
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
TOPIC: Write the command for the following table Student.
COMMANDS:
RESULT: Thus the command has been written and the output was verified successfully.
TOPIC: Write a query to create table and work with insertion, deletion, and
updating commands
COMMANDAS:
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.