PartB-Unit3-Database Management system
PartB-Unit3-Database Management system
Batch (2023-24)
Practice Worksheet
Unit 3: Database Management System
Attempt all Questions:
1. ___________ is a constraint in the table to check that every record in the table is unique.
a. Primary Key b. Foreign Key
c. Tuple d. Record
2. In which view you can enter the data in a table?
a. Design View b. Datasheet view
c. Form View d. Document view
3. An ___________ sign in the record selector indicates that the row is ready to receive a new
record.
a. Asterisk (*) b. Ampersand (&)
c. Pencil d. Arrow
4. An attractive interface that accept data from the user and inserts it in the corresponding table or
query, is called?
a. Reports b. Tables
c. Forms d. Queries
5. ___________ data field is used to store links to web pages, websites or files.
a. OLE b. Hyperlink
c. Lookup wizard d. Memo
6. _____________ key moves the cursor to next record in the Datasheet view.
a. down arrow key b. Tab key
c. Space Key d. Ctrl+A
7. ______________ prevents the user from entering inconsistent data.
a. Referential Integrity b. Primary Key
c. Relationship d. Sorting data
8. Which of the following is not a field property in Database system?
a. Validation Text b. Format
c. Caption d. Text
9. Which relationship is used if we wish to divide a large table to secure sensitive data in separate
table.
a. One-to-one b. One-to-many
c. Many-to-many d. Many-to-one
The ____________ function groups the records that have the same values in a particular field and
10. returns the count of those values.
a. Sum b. Average
c. Count d. Group By
If a column in table does not have a value, it’s considered as ___________.
11. a. Void b. Null
b. Empty d. Deleted
Which of the following can be used as a wildcard character?
12. a. Like b. When
c. Which d. Look
The _________ datatype is used to insert alphanumeric values in the database.
13. a. VARCHAR b. INTEGER
C. INSERT d. CREATE
DDL stands for_____________________.
14. a. Digital Documentation Language b. Digital Definition language
c. Data Definition language d. Data Defining language
If a column does not have any value in a table, it considered as ____________.
15. a. EMPTY b. NULL
c. DELETE d. Varchar
Which of the following SQL command will retrieve all records of failed student from table
16. RECORD?
a. SELECT * FROM RESULT WHERE RECORD= ‘FAIL’
b. SELECT * FROM RECORD WHERE RESULT= ‘FAIL’
c. SELECT * FROM RECORD WHERE STUDENT= ‘FAIL’
d. SELECT * FROM TABLE RECORD WHERE RESULT= ‘FAIL’
__________ view is used to enter or edit the data.
17.
a. Design View b. Layout View
c. Print View d. Form view
To open the property sheet in Access, press the _________ key.
18. a. Alt+Enter b. Ctrl+Enter
c. Shift+Enter d. Alt+Home
Which is not a part of Report Sections in Access.
19. a. View page b. Page Header
c. Details d. Page Footer
A __________ is established between two or more tables to retrieve data, collectively.
20. a. Redundancy b. Link
c. Relationship d. Bond
What is the name of the table in the given query- INSERT INTO SAMPLE (STU_ID,
21. STU_NAME, RESULT?
a. STU_ID b. STU_NAME
c. SAMPLE d. RESULT
Which SQL command is used to create a table in the database?
22.
a. INSERT b. SELECT
c. CREATE d. DROP
A __________ command is a type of DML command.
23. a. INSERT b. SELECT
c. DROP d. CREATE
The properties of a form can be customised through the _________ dialog box.
24. a. FORM b. Property Form
c. Layout d. Property Sheet
DBMS is a program that controls the creation, maintenance and use of database. Here,
25. DBMS refers to
a. Digital Base Management System b. Data Build Management System
c. Data Base Managing System d. Data Base Management System
Which of these is not a type of Database?
26. a. Hierarchical Database b. Network Database
c. Relational Database d. Translational Database
The Hierarchical Database is also known as ________ structure.
27.
a. Tree b. Graphics
c. Table d. Inverted tree
Which of the following is not the advantage of database?
28. a. Sharing of data b. Reducing Data Redundancy
c. Increase Data Inconsistency d. Data Security
Which of the following store command to retrieve data from database?
29. a. Forms b. Query
c. Reports d. Tables
By default, the length of varchar data type is _________
30. a. 20 b. 30
c. 40 d. 50
Regd.N
NAME BRANCH
o
0001 RAM CSE
0002 HARI MECH
0003 PRADEEP EEE
0004 DEEPAK ETC
I. Write a SQL command which will show the entire STUDENT table.
II. Write a SQL command which will show the Regd.No of PRADEEP.
III. Write a SQL command which will show the NAME and BRANCH column.
IV. Write a SQL command which will count the number of rows existing in STUDENT table.
V. I want another column in the STUDENT table as “address”. How can I do that?