It File
It File
Practical File
Session 2024-25
Submitted By
Name: ______BHAVESH________
Class : _________X-A_____________
In Open Office Writer some text formatting like font size, font alignment and font face are by
default saved in the software. Those predefined formatting are called style.
For example sometime a user wants to format a heading aligned center, text bold and
underlined in comparison to the paragraph. In this case applying all formatting features in all
headings, we can create a style which would save a lot of time.
Types of Styles
In Open Office ‘Style and Formatting Window’ is used to create, update and delete the style. F11
is the shortcut key to get 'Style and Formatting Window.' It provides different options:
1) Paragraph Style is used to set font face, font size. line spaces in a Paragraph.
Image
An image plays an important role in a digital
document. An article becomes more interactive and
reader doesn’t feel bored. We see newspaper’s each
articles with at least with one or more photographs.
In Open Office Writer, image can be inserted using
two methods.
Q2 Write the Steps to insert an Image in a document :
1) Click on Insert tab in Open Office writer.
Q4 Insert some images in a document and give the steps to Group them.
Grouping is used to combine multiple
objects into one object which is helpful to
resize and move multiple objects in a
document. These are the steps to use
grouping object:
Note: For ungrouping select grouped object and click mouse right button and select
Group>Ungroup option.
2) Do formatting like font size, font face, font color, Bold, Underline, Italic.
sheet:
group by option.
Solver is a more descriptive form of Goal Seek. Solver can deal with multiple variables as the
Goal Seek is used to manipulate one
variable cell.
5) Press OK button.
Database
Flat File Database
Software that is used for creating documents and it can be used to store Data in a table. For
example MS Word can be used to store one class Data like students name, Age, DOB, Address,
Father Name, and Mother Name etc. For example MS Word, MS Excel
DBMS is software that is primarily designed to store large among of Data in an organized way.
It helps to store, update, delete and retrieve data in an easy manner, so websites, application
software use DBMS to store large amount of data.
Advantages of Database
2) Data Sharing: In a centralized database, data can be shared with different websites as well
as with application software.
3) Better Security: Database is more secure as the users are divided into different categories.
Some of the users may be given authority to read and use the data; other may be given authority
to update data.
4) Data Integrity: Let’s take an example of a database that contains marks scored by students
in an examination. The maximum marks are 100. The marks secured by a student can’t exceed
100. Integrity checks can be inbuilt into the database such that it will accept numbers only in the
range of 0 to 100.
5) Backup and Recovery: Database provides backup and recovery feature. So in case disk
crashes, power failures, or software gives errors, the database can be recovered to the previous
state.
Primary Key
Primary Key is the field (Emp-ID, E-Name etc) in a table which has unique values and doesn’t
remain empty. It helps to find records in a table. You can have only one Primary key in a table.
Composite Key
Composite Key is one or more fields which have all the qualities of Primary key. In above table
Aadhar-No is the composite key as it has unique values.
Foreign Key
Foreign Key is a field in a table which setup a relationship among the tables. In above table
Dept-No is the Foreign Key as it setup relationship between two tables.
Data Type
Data Type is the values that are going to be saved in a table. In above table Employee Name will be
Character, Salary will be Number.
Date data type is used to save date and time values. Format: DD: MM: RR
DDL commands are subset of SQL commands. These commands are primarily used for
defining and modifying the structure of a database or a table. These are the following
commands used in DDL
2. Display the Names and salary of the salesman who belong to Mumbai.
Sol: SELECT NAME ,SALARY FROM SALESMAN WHERE CITY=”Mumbai”;
3. Display the ID, city and names of the salesman in ascending order of names.
Sol: SELECT S_ID ,City, Name FROM SALESMAN ORDER BY Name ASC;