0% found this document useful (0 votes)
2 views10 pages

Class10 Practicle File

The document is a practical file for Class IX IT (402) that outlines various tasks related to OpenOffice applications, including styles in Writer, creating new styles, consolidating data in Calc, recording macros, and designing a table for a 'STUDENT' entity. It provides detailed steps and commands for each task, along with explanations of different style types available in OpenOffice. Additionally, it includes SQL commands for managing a student database.

Uploaded by

jai1.0727372
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views10 pages

Class10 Practicle File

The document is a practical file for Class IX IT (402) that outlines various tasks related to OpenOffice applications, including styles in Writer, creating new styles, consolidating data in Calc, recording macros, and designing a table for a 'STUDENT' entity. It provides detailed steps and commands for each task, along with explanations of different style types available in OpenOffice. Additionally, it includes SQL commands for managing a student database.

Uploaded by

jai1.0727372
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Class IX – IT (402)

BoardPractical
File 2024-25

Submitted by :

Class & Section :

Board Roll number :

Teacher Name :

Teacher Sign :
Class X – IT (402) Board Practical File

[Link] Practical Teacher's Sign


1 Explain the styles given in the Styles
and Formatting Window for writer and
paste the screen shot of the window also
2 Write the steps to create new style in
Open Office Writer.
3 Write the steps to consolidate data of
two sheets in Open Office Calc .
4 Write the steps to record Macro in open
office calc.
5 Write the steps to create table with
minimum five fields on an entity
"STUDENT" in design view.
6 Write the command for the following
table Student
Q1. Explain the styles given in the Styles and Formatting Window for writer
and paste the screen shot of the window also.

Ans. [Link] supports the following types of styles:


1. Page styles
2. Paragraph styles
3. Character styles
4. Frame styles
5. Numbering styles
6. Cell styles
7. Graphics styles
8. Presentation Styles

Styles given for writer are shown below

Character Styles

Paragraph Style

Frame Styles
Page Styles

List Styles

Styles and Formatting Window – Snapshot

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.

********************************************************************

Q2. Write the steps to create new style in Open Office Writer.

Ans. We can create New (Custom) Styles in two ways

1. Creating a new style from a selection :

1. Open the Styles and Formatting window and choose the type of style
you want to create.
2. In the document, select the item you want to save as a style.
3. In the Styles and Formatting window, click on the New Style from
Selection icon
4. After Clicking on New Style from Selection, create style dialog box
appear.
5. Write the name for the new style and click on OK

********************************************************************

Q3. Write the steps to consolidate data of two sheets in Open Office Calc .

Ans. 1. Open a new file in Open Office Calc and write the following data :

Sheet-1 screen shot


2. Open another file in Open Office Calc and write the following Data

Sheet-2 screen shot

3. Open the third sheet and click on Data → Consolidate. The following dialog box
appear

4. Click to select Source data range of first sheet and then click on Add button.
5. After adding Source data range from both the sheets, the dialog box will appear
like shown below:
6. Click on the green button and select the Cell where you want the consolidated
data.
7. After adding both the range and selecting the cell where we want the result, click
on OK button
8. After clicking OK button, we will get the consolidated data as shown below.

********************************************************************

Q4. Write the steps to record Macro in open office calc.

Ans. Following steps create a macro that performs paste special with multiply.
1. Open a new file in calc.
2. Enter the following data.
3. Select cell A3, which contains the number 3, and copy the value to the clipboard.
4. Select the range A1:C3. 5. Use Tools > Macros > Record Macro to start the
macro recorder.
5. The Record Macro dialog is displayed with a stop recording button.

6. Use Edit > Paste Special to open the Paste Special dialog.

7. Set the operation to Multiply and click OK. The cells are now multiplied by 3.

8. Click Stop Recording to stop the macro recorder. The [Link] Basic
Macros dialog opens and save the macro at specified place with a particular
name.
Class X – IT (402) Board Practical File

********************************************************************
Q5. Write the steps to create table with minimum five fields on an entity
"STUDENT" in design view.

Ans. We will design the following table.

Field Name Data Type Constraint


ID Integer Primary Key
Name Varchar
Address Varchar
Phone Varchar
DOB Date

1. Click on Create Table in Design View… option available under Tasks and a Table
Design window appears as shown below.

2. Specify the field name and data type of the field to be created as shown below.
Class X – IT (402) Board Practical File

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

4. Save the table (File > Save)

********************************************************************

Q6. Write the command for the following table Student.

Rollno Class Name Phone_no


1 XII Sumit 1234565
2 X Amit 3564583
3 X Anuj 1236589
4 XI Mini 5869542

1. Display all the records of table Student.


2. Insert record of your choice
3. Display record of student whose roll number is 3
4. Display record of students who are in class 'X
Ans.
1. Select * from student;
2. Insert into student values(5, 'XI' , 'Suman' , 6953245)
3. Select * from student where Rollno = 3;
4. Select * from student where class = 'X'

You might also like