IT Practical File
IT Practical File
Q1. Write the steps to apply Styles using Fill Format mode.
Ans. Fill Format mode makes it easier for you to apply the same style
to many different areas on just one click without having to go back to
the Styles and Formatting window and double-click every time.
To apply Styles using Fill Format mode, follow these steps:
1. Click on Styles and Formatting icon to open the Styles and
Formatting window.
3. Click on Fill Format Mode icon at the top right side of the Styles and
Formatting window. The mouse pointer changes.
5. To quit Fill Format mode, click the Fill Format Mode icon again or
press Esc key.
Q2. Write the steps to insert an image in a Writer document from the
Clipboard.
Ans. To insert an image from the clipboard, follow the given steps:
1. Open the document from where the image has to be copied and select
the image.
Ans. Cropping means to cut off some part of the picture. This is done
when you do not wish to use the entire picture and are interested only
in some part of it.Steps to Crop a Picture are as under -
1. Right-click on the image and select Crop option from the context
menu.
OR
Select Picture and choose Format Menu->Image->Crop option.
The crop angles will appear on the image for cropping.
2. Following are the parameters, which you can adjust to crop an image:
* Keep scale/ Keep image size: When you do not want the scale of the
image to be changed after cropping, then click on Keep Scale radio
button (selected by default). When Keep image size is selected, cropping
enlarges, shrinks or distorts the image to keep the image size constant.
* Left, Right, Top and Bottom: If you want to crop the image from the
left side of the image then enter the value in Left box. Similarly, to crop
the image from the right side, enter the value in Right box and so on.
When Keep scale is selected, the size of the image also changes.
When Keep image size is selected, the remaining part of the image gets
enlarged by positive values of cropping and shrunk by negative values
of cropping. This does not effect the size of the image.
* Width and Height: Entering the value of width and height helps to
adjust the width and height of an image.
4. Click OK after setting the required parameters.
2. Add the content and styles that you want. You can edit the page
layout as per your need like setting Page Margins, orientation, Style,
Header and Footer, etc. You can also add table of contents or some
predefined text.
3. In the last step of the wizard (step 6) specify the Template name and
location for saving the template. On the menu bar, click File →→
Templates →→Save. The Templates dialog box opens up.
4. In the New template field, type a name for the new template.
Q5. How to link the Data Source for creating labels in mail merge?
Ans. To link the Data Source for creating labels in mail merge, follow
the steps -
2. Choose Other external data source option and click Next button.
9. Give any name for the address book and click Finish button.
1. Enter the data in a worksheet as shown and sort the data month-
wise.
4. In the Group by box, select the column that you want to add the
subtotals to. If the contents of the selected column change, the subtotals
are automatically updated.
5. In the Calculate subtotals for box, select the column(s) containing the
value that you want to subtotal.
6. Select the function you want to use for calculation from the Use
function box.
1. Select the range of cells that contain the values that will change
between scenarios.
5. You can select unique border colour for individual Scenarios. To do so,
make sure that the Display border checkbox is selected and then select
the colour of your choice from the drop-down list to the right of the
Display border.
6. Click OK button to close the Create Scenario dialog box and come
back to the active worksheet.
4. Click on OK button.
5. A dialog box to save the document prompts. Click on Yes and save the
document. The word (Shared) appears on the title bar which shows that
the file is shared where many people can work together.
5. Click the New Module button. If no libraries exist, then the Standard
library is automatically created and used. In the New Module dialog box,
type a name for the new module and click OK. The OpenOffice.Org
Basic Macros dialog box appears again.
6. Select the newly created module and enter the Macro name in the
Macro name text box. Now click on Save to save the Macro.
Q11. Write the steps to create the following table Student in the
database of your name in Design View in LibreOffice Base:
(Note: Set Primary Key on Roll_No column)
Solution.
Steps-
To enter data in table, follow these steps:
1) Start LibreOffice Base and open the previously created database
with your name.
2) Double-click on the table name Student. The Table Data View
window appears.
3) Enter the data (5 Records) as given in the above table Student.
4) Click on Save current record to save the record.
Solution.
(a) CREATE TABLE STUDENT(“Roll_No” integer(3), Name varchar(30), Class
char(2), Address varchar(50), City varchar(15), Mobile Integer(10));
(b) INSERT INTO STUDENT VALUES (‘11’,’Naira’,’X’,’101 Heritage C.P.
Road’,’Delhi’,’9809805555’);
(c) SELECT * FROM STUDENT ORDER BY NAME DESC;
(d) UPDATE STUDENT SET CLASS =’XI’;
Solution.
(a) CREATE TABLE EMPLOYEE(“Emp_ID” integer(5), Emp_Namevarchar(50),
Emp_DOJ date, Emp_Dept integer(3), Emp_Sal integer(10));
(ii) INSERT INTO PRODUCT VALUES (‘P005’, ‘Chocolate Cone ’, ‘Vadilal Ice
Cream’, 32.00);
(iii) UPDATE PRODUCT SET Price = 40.00 where Pid=’P005’;