Grade 10- Part B - Unit 3 (Database Management System)
Grade 10- Part B - Unit 3 (Database Management System)
Part B – Unit 3
Multiple Choice Questions
1. In Base, the relationship applied on the tables can be removed with the help of _________
option. [ d ]
a. Clear b. Remove c. Drop d. Delete
2. In SQL, the keyword to display records in ascending order is ___________. [ c ]
a. Asce b. Incr c. Asc d. High
3. _________ is a numeric data type which can store Yes/No type values in the form of 0 or 1 in
Base table. [ a ]
a. Boolean b. Char c. Binary d. Other Object
4. Which of the following statement retrieves zero or more rows from one or more database tables
or database views? [ c ]
a. UPDATE b. DELETE c. SELECT d. DISPLAY
5. Which datatype will be appropriate to store information as Salary, Fees, Price etc. [ a ]
a. Numeric Datatypes b. Binary Datatypes
c. Alphanumeric Datatypes d. Date Time
6. Roshni has created a table Customer in SQL and wants to store photograph image of every
customer under Cust photo field. Suggest a suitable data type from the options given below.
[ c ]
a. Image b. Picture c. LongVarBinary d. Graphic
7. The ____________________ should be chosen such that its attributes are never or very rarely
changed. [ c ]
a. Candidate Key b. Super Key c. Primary Key d. Foreign Key
8. By default, all the fields in OpenOffice Base will have _________ datatype. [ c ]
a. Int (Tiny) b. Boolean c. Text (Varchar) d. Text (Char)
9. Which one of the following is not an example of DBMS? [ d ]
a. PostgreSQL b. SQLite c. FoxPro d. Impress
10. Databases have the ability to ________________________. [ b ]
a. Spell check, perform calculations, library of mathematical functions, replication
b. Store a large amount of data in a structured format, easy update, sort quickly, production
of reports.
c. Rotate images, Copy and Paste, Fill scale
d. None of the above
11. A _________ is an interface in a user specified layout that lets users to view, enter and change
data directly in database objects such as tables. [ b ]
a. Frame b. Form c. Relation d. Report
12. Which one of the following is used to define the structure of the relation, deleting relations and
relating schema? [ c ]
a. Relational Schema b. DML (Data Manipulation Language)
c. DDL (Data Definition Language) d. Query
13. Which of the following is expanded form of SQL? [ b ]
a. Systematic Query Language
b. Structured Query Language
c. Software Query Language
d. Structural Query Language
14. Which of the following is not the advantage of database? [ a ]
a. Increase Data Consistency b. Data Security
b. Reduce Data Redundancy d. Sharing of data
15. Binary data types in a database can be used for storing. [ a ]
a. Photos, music files etc
b. Integer values
c. Only image files
d. Only video files
16. An SQL INSERT statement adds _____________ records to any single table in a relational
database. [ c ]
a. Only Two b. One c. One or More d. None of these
17. ___________ clause can be used with the SELECT statement in SQL to specify which rows to
retrieve from the table. [ a ]
a. WHERE b. GROUP c. SAME d. SIMILAR
18. Identify the property which help to set the number of characters in text / varchar type field of a
table in DBMS. [ b ]
a. Entry Required b. Length c. Default Value d. Size
19. A _________ is a database object that provides a systematic way to accept data from the user
and store it in a table of a database. [ d ]
a. Query b. Form c. Report d. Table
20. The details associated with an entity are called ________________. [ d ]
a. Records b. Tables c. Primary Key d. Attributes
21. Primary Keys are also _________ in the database, making it faster for the database to search for
a record. [ a ]
a. Indexed b. Defined c. Duplicated d. Replicated
22. The __________________ has evolved since the 1960 to ease increasing difficulties in designing,
building and maintaining complex information system. [ c ]
a. Forms Concept b. Knowledge Concept
c. Database Concept d. Formula
23. Record uniqueness in a table helps to avoid accidental _________ of records caused by user or
computer error. [ a ]
a. Duplication b. Key c. Deletion d. Removal
24. GUI act as front end and database server act as _________________. [ a ]
a. Backend b. End c. Container d. None of these
25. Data in RDBMS is organized in _________. [ b ]
a. Files b. Tables
c. Text related Only d. linked through network
26. In the relationship design screen, the relationship between the two tables is done using
__________ operation. [ a ]
a. Drag and Drop b. Click c. Double Click d. Right Click
27. Binary data types are used for storing data in _________. [ d ]
a. Integer Format b. Character Format
c. Text Format d. Binary Format
28. _____________________ are the ways to produce the data stored in databases and tables in a
printed form. [ a ]
a. Report b. Form c. Query d. Data
29. _________ means that the query uses criteria you provide to hide some data and present only
what you want to see. [ c ]
a. Indexing b. Sorting c. Filtering d. Relating
30. _______ command is used to restore database to original since the last commit. [ a ]
a. Rollback b. Select c. Review d. None of these
Subjective Type Questions
Answer the following questions in 20 – 30 words.
1. Give any two benefits of creating relationships between tables in a database.
A. Benefits of creating relationships between tables are:
Saves time as there is no need to enter the same data in separate tables.
It helps in summarizing data from related tables.
It reduces data redundancy
It reduces data inconsistency
It maintains data integrity
It allows data sharing among all database users
It allows centralized control of data
2. What are the different options needed to choose to maintain Referential Integrity?
A. The different options needed to choose to maintain Referential Integrity are:
No action: This is the default option. This option states that a user should not be allowed to
update or delete any record in the master table if any related record exists in the transaction
table.
Update cascade: This option allows the user to delete or update the referenced field but along
with it all the related records in any of the transaction tables will also be deleted or updated.
Set NULL: This option assigns NULL value to all the related fields if the master record is deleted
or updated.
Set default: This option assigns any fixed default value to all the related fields if the master record
is deleted or updated.
One to One Relationship: In this relationship, both the tables must have primary key columns.
One to Many Relationship: In this relationship, one of the tables must have primary key column.
It signifies that one column of primary key table is associated with all the columns of associated
table.
Many to One Relationship: In this relationship, one of the tables must have primary key column.
It signifies that all the columns of primary key table are associated with one column of associated
table.