0% found this document useful (0 votes)
145 views7 pages

Class 10 Notes

This document provides answers and explanations for chapters 10-14 of a class on information technology. It covers key concepts of database management systems including data, tables, fields, primary keys, and relationships. It also discusses creating and manipulating tables, performing queries to retrieve data, and using forms and reports. Concepts like normalization, data types, one-to-one and many-to-many relationships are explained. Steps for creating queries, forms and reports using the LibreOffice Base software are provided.

Uploaded by

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

Class 10 Notes

This document provides answers and explanations for chapters 10-14 of a class on information technology. It covers key concepts of database management systems including data, tables, fields, primary keys, and relationships. It also discusses creating and manipulating tables, performing queries to retrieve data, and using forms and reports. Concepts like normalization, data types, one-to-one and many-to-many relationships are explained. Steps for creating queries, forms and reports using the LibreOffice Base software are provided.

Uploaded by

gkgthnb2rh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 7

CLASS 10 – INFORMATION TECHNOLOGY

ANSWERS
CHAPTERS – 10, 11, 12, 13, 14

Chapter 10 – Concepts of Database Management System


Assessment Time
A. Select the correct option.
1. a. Database
2. b. Data
3. c. A set of related fields
4. b. Database Management System
5. c. A primary key field can be NULL.
B. Fill in the blanks.
1. Data Redundancy
2. Relational Model
3. Null
4. Composite Key
5. Data Concurrency
C. Answer the following questions.
1. Database is a collection of data, which is stored in a systematic manner, i.e., in the form of
tables so that one can retrieve and manipulate the information quickly and efficiently from a
large set of data.

2. The Database Management System (DBMS) is a computerised record keeping system or a


software that enables you to create, store, modify, and extract information from a database.
The Relational Database Management System (RDBMS) is a type of the DBMS software that uses
the Relational Database (RDB) model for its database. A relational model enables the users to
store data in several tables.

3. Tuples: All the rows (consists of a set of related information that belongs to a particular
object) in a table/database are called tuples or records.
Attributes: An attribute is a piece of information about an object. All the columns in a
table/database are called attributes.

4. A primary key is a set of one of more fields that uniquely identifies each record in a table. It
does not contain any duplicate data. A table can have only one primary key. The value in the
primary key field is different for every tuple and thus helps in uniquely identifying the records. A
foreign key is a field or set of fields that is used to establish a relation between the two tables. In
other words, it consists of one or more fields whose value matches with a primary key in
another table. Basically, a foreign key in one table is used to point at a primary key in another
table. It acts as a cross-reference between the tables.

5. A composite key or composite primary key refers to a combination of two or more attributes
(fields) that uniquely identify the records in a table. It may be a candidate key or primary key.
For example, In the Customer table of Dominos database, the CustOrder_ID field alone cannot
become a primary key as many products can be purchased by the same customer, thus the
same customer can have multiple entries. Similarly, column Product_ID alone cannot become a
primary key as the same product can be purchased by different customers. Hence, composite
key is CustOrder_ID and Product_ID, as records can be retrieved uniquely by using both the
fields.

Ch 11 – Creating and using Tables


Assessment Time
A. Select the correct option.
1. b. Handouts
2. c. Query
3. b. Database Wizard
4. b. Date [DATE]
5. a. Float [FLOAT
B. Fill in the blanks.
1. Database
2. Record
3. Tables
4. Form
5. Data Type
C. Answer the following questions.
1. Following are the different database objects:
• _Tables store data items in the form of rows and columns.
• _Queries are used to retrieve a specific data from the tables of a database.
• _Forms are the user-friendly interfaces that facilitate the process of inserting, editing,
deleting, and updating the data in tables and queries.
• _Reports are used to display the selected data in a printable format.

2. Data types determine what type of data you can enter into a field.

3. Text [VARCHAR] data type a variable length field type, which is used to store character or
string values.

4. The Table Data view is the default view of LibreOffice Base. In this view, you can enter and
navigate the records. In Table Design view, you can create a table by defining the field names
and field types. This view also allows you to edit the structure of the created tables.

5. To edit a table structure,


• _Select the table in a database, right-click on it, and select the Edit option.
• _The selected table will be opened in the Design View.
• _Change the field name, field type or properties of the field as per your requirement.
• _After making the required changes, click on the Save button.

Ch 12 – Performing Operations on Tables


Assessment Time
A. Select the correct option.
1. c. Both a and b
2. a. Edit > Edit Data
3. a. Edit > Delete Record
4. d. Sort Order Dialog Box
5. d. All of the above
B. Fill in the blanks.
1. Primary Key
2. Relationships
3. One-to-One
4. Many-to-many
5. Properties
C. Answer the following questions.
1. Tables are the easiest way to store, organise, and present a large amount of information.
They are the building blocks of a database.
2. To sort the records of a table in descending order, first select a field according to which you
want to sort the data. Click on the Sort in Descending Order button on the Table Data toolbar.
Data will be sorted on the basis of the selected field.

3. Referential Integrity (RI) is a rule in RDBMS. It states that a foreign key must have a matching
primary key, i.e., all its references must be valid and the users cannot accidentally delete or
amend the data. It ensures the accuracy and consistency of the data within a relationship, and
prevents the users to enter the inconsistent data.

4. Following are different types of relationships:


• _One-to-One
• _One-to-Many
• _Many-to-Many

5. Students and Courses tables are best example of a many-to many relationship. A student can
register for many courses, and a same course can be opted by many students.

Ch 13 – Retrieving Data using Queries


Assessment Time
A. Select the correct option.
1. a. Add Table or Query
2. b. Criteria
3. a. Like
4. b. *
5. a. Structured Query Language
B. Fill in the blanks.
1. Query Wizard
2. Alias
3. Where
4. Wildcards
5. SQL
C. Answer the following questions.
1. A query is a database object that enables you to retrieve records from one or more tables of
the database or different databases that meet a specific condition or criteria.

2. Following are the two queries views:


• Query Design View
• The SQL View

3. The Query Wizard guides you to create a query based on selected table. It is the easiest
method for beginners. The Query Design View gives you more control over a query. It allows you
to create a query from the scratch.

4. SQL is a language that allows you to make queries to define the data structure and
manipulate the data in the database. A user can create and manipulate (insert new data, delete
data, select and update data) the database anytime by using the Structured Query Language
(SQL) commands.
5. DDL commands are used to define and modify the structure of a database whereas DML
commands allow the users to manipulate data in the database.

Ch 14 – Working with Forms and Reports


Assessment Time
A. Select the correct option.
1. a. Form
2. d. Run Query Button
3. d. Report
4. b. Header
5. b. Static
B. Write T for True and F for False.
1. T
2. F
3. T
4. T
5. T
C. Answer the following questions.
1. A form holds different fields of a table that you use to enter and modify the data in the
database. Using form, you can add or edit one record at a time. It is a convenient and an
interactive way of entering data, but not an appropriate tool for every data entry.

2. To launch the Form Wizard, click on the Forms option in the Database Objects pane. Then,
select the Use Wizard to Create Form option in the Tasks pane. The Form Wizard will open.

3. Yes. To change the name of labels, follow these steps:


• _Right-click on the created form and select Edit. You will switch to the Design Mode of the
form.
• _Choose a label that you wish to modify and double-click on it.
• _The Properties: Label Field dialog box opens. Here, enter a new name in the Name property.
Changes will apply immediately.

4. A report is a summary of your database. It is an effective way to organise and summarise the
data for viewing and printing. It consists of information obtained from tables or queries, and
presented as per the user's requirements.

5. A static report always displays the same data from the time when the static report was
created. A dynamic report generates the result of the report from the current table data. This
means that if you have some updated data in the table that feeds the report, then the report
will change accordingly.
BRAIN DEVELOPER
Section 4: Competency Based Questions (Unsolved)
1. Launch OpenOffice Base on your computer, the Database Wizard opens. Choose the Create a
new database option and click on Next. Stay with the default settings and click on Finish. The
Save As dialog box opens. Enter a new for the database and click on OK.

2. To switch to the Table Design View, click on the Create Table in Design View option in the
Tasks Pane. Specify the following field types for the fields:
• _EMP_ID: Interger[INTEGER];
 Name: Text[VARCHAR];
• Address: Text[VARCHAR];
• City: Text[VARCHAR];
• Contact: Interger[INTEGER];
• Aadhaar _Number: Interger[INTEGER];
• Department: Text[VARCHAR]

3. Query to get the records in descending order, group by city:


SELECT * FROM SALES
Group By City
ORDER BY S_ID DESC;

4. To display the students with grade 'A' or 'E' apply the following criteria:

5. He can use the Reports option in the Database Objects Pane. A report is an effective way to
organise and summarise the data for viewing and printing.

Section 5: Short Answer Type Questions (Unsolved)


1. Tuples: All the rows (consists of a set of related information that belongs to a particular
object) in a table/database are called tuples or records.
Attributes: An attribute is a piece of information about an object. All the columns in a
table/database are called attributes.

2. A composite primary key refers to a combination of two or more attributes (fields) that
uniquely identify the records in a table.

3. A relational model enables the users to store data in several tables, and whenever the data is
need, it can be retrieved easily by establishing a relationship among them.

4. A field type determines what type of data you can enter into a field.

5. Data/ Time data type is used to store date and time information in form of MM/DD/YY
HH:MM:SS AM/PM.

6. The Yes/No [BOOLEAN] field type stores value in the form of Yes or No. Since, Boolean
interpretation of Yes and No is 1 and 0, respectively. The field length of this data type is 1, i.e., it
can store either 1 or 0.

7. Using the Table Wizard, one can start with the basic structure of a table.

8. In UIDAI database, each person has only one Aadhaar number, and each Aadhaar number is
assigned to only one person.
9. AutoValue: If set to Yes, the values for this data field is generated by the database engine.
10. SELECT and INSERT
Section 6: Long Answer Type Questions (Unsolved)
1. Following are the advantages of DBMS:
• A database always holds data in a standard format.
• The data of a database can be available anytime and anywhere.
• It has the capability to minimise data duplication and redundancy.
• It also ensures data security.

2. A primary key is a set of one of more fields that uniquely identifies each record in a table. It
does not contain any duplicate data. A table can have only one primary key. The value in the
primary key field is different for every tuple and thus helps in uniquely identifying the records.

A foreign key is a field or set of fields that is used to establish a relation between the two tables.
In other words, it consists of one or more fields whose value matches with a primary key in
another table. Basically, a foreign key in one table is used to point at a primary key in another
table. It acts as a cross-reference between the tables.

3. Launch OpenOffice Base on your computer, the Database Wizard opens. Choose the Create a
new database option and click on Next. Stay with the default settings and click on Finish. The
Save As dialog box opens. Enter a new for the database and click on OK.

4. Tables are the easiest way to store, organise, and present a large amount of information.
They are the building blocks of a database. Tables play an important role in storing data. All the
data is stored in the database in tabular form. A well-designed table helps the users to retrieve
the data from a database easily. You can create table, by using any of the following methods:
• Using Table Wizard
• Using Table Design View

5. Structured Query Language (SQL) is a language that allows you to make queries to define the
data structure and manipulate the data in the database. Data manipulation is the process of
editing or modifying the data to keep it updated. A user can create and manipulate (insert new
data, delete data, select and update data) the database anytime by using SQL commands.

Following are the two DDL commands:


• CREATE: It is used to create a new database or table.
• ALTER: This command modifies the structure of a database or table.

Following are the two DML commands:


• SELECT: It retrieves data from the table.
• INSERT: It inserts data into a table.

You might also like