Let’s begin NCERT Solutions Chapter 10 Working with multiple tables. In this article you will get questions and answers of Class 10 textbook exercises for Chapter 10 Working with multiple tables. Here we begin!
Topics Covered
NCERT Solutions Chapter 10 Working with multiple tables
Lets starts with Part A Multiple choice questions as usual.
A. Multiple choice questions
[1] Which of the following actions can be performed once the tables are created in a database?
(a) Add a field in a table
(b) Rename a table
(c) Delete a table
(d) All of the above
[2] Which of the following is checked by a DBMS?
(a) Redundancy
(b) Inconsistency
(c) Both (a) and (b)
(d) Neither (a) nor (b)
[3] Which of the following is required to set a relationship between the two tables?
(a) Both the tables must be in different databases
(b) Both the tables must have a common field
(c) Both the tables must have the same name
(d) Both tables must be stored in documents folder only.
[4] If a record is added in a master table, which of the following is NOT true for transaction table
(a) The record in the master table is called the master record
(b) The corresponding record in transaction table can only be entered once.
(c) The record in the transaction table is called the transaction record.
(d) It is possible to add a record in the master table
[5] Which type of relationship exists between a student and the subjects studied by him/her?
(a) One-to-one
(b) One-to-many
(c) Many-to-many
(d) All of the above
[6] Consider the following tables. Which type of relationship can be established between the two tables?
(a) One-to-one
(b) One-to-many
(c) Many-to-many
(d) None of the above
Table 1: Item
Item_Code |
Item_Name |
Price |
Qty |
Category_Code |
Table 2: Item_Category
Category_Code |
Cat_Name |
Item_Code |
Cat_Disc |
[7] Which of the following menus contains the Relationship option?
(a) Edit
(b) File
(c) Tools
(d) View
[8] The list of tables to be added is displayed in the ____________ dialog box in the Relationship Screen.
(a) Add Tables
(b) Add Databases
(c) Both (a) and (b)
(a) Neither (a) nor (b)
[9] In the relationship design screen, the relationship between the two tables is done using _____________ operation.
(a) Click
(b) Double Click
(c) Drag and Drop
(d) Right click
[10] Which of the following is NOT an option that can be used to maintain referential integrity in a database?
(a) No Action
(b) Set NULL
(c) Set Default
(d) Set Value
B. State whether the following statements are True or False
[1] Redundancy is preferred in a database.
[2] In a table, a record for a particular entity should not be repeated.
[3] A single field should always have only one data value.
[4] If a table is edited, the records already entered in it are deleted.
[5] The record in master table should be entered before the corresponding record is entered in the transaction table.
[6] In one-to-many relationship, one specific record of the master table has more than one corresponding records in the related transaction table.
[7] The Relationship option is present in the Widows menu.
[8] In a database, the referential integrity is maintained by the user.
[19] A relationship is always set between the tables based on a common field.
[20] If the master record is deleted, the transaction records will always be deleted.
C. Fill in the blanks
[1]A table to be edited is displayed in _____________ view.
[2] The most important prerequisite for setting a relationship between the two tables is that there must be a ________________between them.
[3] In ________________relationship, one specific record of a master table has one and only one corresponding record in the transaction table.
[4] ___________________is one of the most common types of relationship between the tables in a database.
[5] A record being entered in a ________________ table must always exist in a table.
[6] The principle of _______________helps prevent missing data by keeping deleted data from getting out of synch.
[7] Creating ________________ between tables restricts the user from entering invalid data in the referenced fields.
[8] Data integrity is maintained by ______________.
[9] A relationship between customers and products is an example of ______ relationship.
[10] The ______ window is used to set relationships between the tables.
D. Answer the following questions
[1] Give any two advantages of relating a table in a database.
[2] How is redundancy or inconsistency controlled in a database? Explain with an example.
[3] Define referential integrity. Who maintains referential integrity in a database?
[4] Differentiate between one to one relationship and one to many relationship. Give suitable examples to explain your answer.
Answer:
One to one | One to many |
In one to one relationship, one record of master table has one and only one corresponding record in the related transaction table. | In One-to-Many type of relationship, one specific record of the master table has more than one corresponding records in the related transaction table |
For example – A table dept has three fields Deptno, Dname and loc is with with emp table h having fields like Empno, ename, job, sal, comm, hiredate, deptno. | For example – A table salesman has fields like salesman_id, salesman_name, city, commission is related with table customer having customer_id, cname, bill_amt and salesman_id as well as related with commission table having fields as com_id, commission_amt, salesman_id. |
[5] Explain many to many relationship with an example.