Unit-3 - RDBMS (I.T)
Unit-3 - RDBMS (I.T)
PUBLIC SCHOOL(CBSE)
(Affiliated to CBSE, New Delhi - Affi. No.1931271 & School Code: 56259)
TJS NAGAR, PERUVOYAL 601 206
CLASS WORK NOTES 2023 -24
Q2. Which of the following software is appropriate to store data about school students?
a. MS-Access b. Writer c. Calc d. Impress
Ans. a. MS-Access
Q5. ___________ are dedicated computers that hold the actual databases and run only
DBMS and related Software.
a. Main Server b. Web Server c. Database Server d. Non Database
Server
Ans. c. Database Server
Q6. GUI act as front end and database server act as _____
a. Container b. Back End c. End d. None of the above
Ans. b. Back End
Q9. Data Integrity means that data is accurate and consistent in the database.(T/F)
a. True b. False
Ans. a. True
Q11. Which of the following will help to maintain unique record in the table?
a. Foreign Key b. Primary Key c. Composite Key d. Alternate Key
Ans. b. Primary Key
Q12. Which of the following field of table “Book” can act as primary key?
a. Book_number b. Subject c. price d. Author_name
Ans. a. Book_number
Q13. When primary key is made up of two or more columns then it is called __ primary key.
a. Mixed b. Reference c. Composite d. Compost
Ans. c. Composite
Q15. A key which is referring to the primary key of another table is called _______
a. Alternate Key b. Primary Key
c. First Primary Key d. Foreign Key
Ans. d. Foreign Key
Q16. A field which is ______ for each and every record is called Primary key.
a. Common b. Same c. Unique d. None of the above
Ans. c. Unique
Q17. When data is stored, maintained and retrieved from multiple tables then special
database software are required called ______
a. DBMS b. RDBMS c. Special DBMS d. All of the above
Ans. b. RDBMS
Table : Sales
SalesID (Primary Key)
ClientID
Profit
a. SalesID b. Profit c. Clientphone d. ClientID
Ans. d. ClientID
Q31. Base automatically adds the column as Primary Key if we don’t add.(T/F)
a. True b. False
Ans. True
Q35. Which data type will be appropriate to store information as Salary, Fees, Price etc
a. Alphanumeric Data types b. Numeric Data type
c. Binary Data types d. Date Time
Ans a. Numeric Data type
Q37. Which of the following data types can not store decimal values?
a. Decimal b. Real c. Numeric d. Boolean
Ans d. Boolean
Q38. Which of the following will occupy more space in computer memory?
a. Bigint b. Integer c. Smallint d. Boolean
Ans a. Bigint
Q39. _______ data types are used for storing photos, music files etc
a. Binary b. Alphanumeric c. Numeric d. Special
Ans a. Binary
Q40. Char is a ______ length data type and varchar is a ______ length data type.
a. Fixed, Variable b. Variable, Fixed c. Variable, Variable d. Fixed, Fixed
Ans. a. Fixed, Variable
Q44. Which property ensures that field can not be left blank?
a. Entry required b. Format c. Required Entry d. Required
Ans. a. Entry required
Q46. Which of the following property to be turned “yes” so that value will be auto
incremented?
a. Default b. Format c. Auto value d. Length
Ans. c. Auto value
Q48. Which of the following is not the date time data types?
a. Date b. Time c. Datestamp d. Timestamp
Ans. c. Datestamp
Q49. Which data type is used to store value of fields like “Date of Birth”?
a. Date Time b. Varchar c. Integer d. Other
Ans. a. Date Time
Q54. After inserting records in table, we can not modify the structure of table.(T/F)
a. True b. False
Ans. b. False
Q57. In Base data can be linked between two or more tables with the help
of _________________
a. primary key b. foreign key c. primary and foreign key d. None of the above
Ans. c. primary and foreign key
Q60. There are __________________ types of relationship which can be created between
tables.
a. three b. two c. four d. infinite
Ans. a. three
Q63. Queries are commands that are used to define the structure and modify the data in a
table.(T/F)
a. True b. False
Ans. a. True
Q74. Which command is used to display the salary of all the employees after incrementing
by 1000.
a. Select b. Update c. Modify d. Change
Ans. a. Select
Q77. To get details about the list of students whose favorite color is blue. Query for this is :
a. select all from Stud where fav_Color=’Blue’;
b. select name from Stud where fav_Color=’Blue’;
c. select * from Stud where fav_Color=’Blue’;
d. select all from Stud where fav_Color is ’Blue’;
Ans. c. select * from Stud where fav_Color=’Blue’;
Q78. select * from Stud order by “Rollno” ASC;
a. display all the records of table.
b. display records in increasing order of roll number.
c. both of the above
d. none of the above
Ans. b. display records in increasing order of roll number.
Q82. Command to increase the salary of all employees by 15000.(table name emp and
column name sal)
a. update emp set sal = sal + 15000; b. update emp set sal = 15000;
c. update set sal = sal + 15000; d. None of the above
Ans. a. update emp set sal = sal + 15000;
Q85. A ________ provides a systematic way of storing information into the database.
a. Report b. Query c. Form d. None of the above
Ans. c. Form
Q86. Which of the following act as an interface to view, enter and change data in database?
a. Report b. Table c. Query d. Form
Ans. d. Form
Q87. A _____________ helps to display the data in a summarized data.
a. Report b. Form c. Query d. None of the above
Ans. a. Report
Q88. A _______ helps to collect specific information from the pool of data.
a. Query b. Report c. Form d. None of the above
Ans. a. Query
Q90. Which of the following field is invalid for storing information of “Library” Table?
a. Cost b. Booknumber c. Authorname d. Dateofbirth
Ans. d. Dateofbirth
Q91. Which of the following is suitable to act as a primary key in table student?
a. Rollno b. Name c. Class d. Section
Ans. a. Rollno
1 Aman IX 3000
2 Anil X 3200
Table :Teacher
DDL DML
It stands for Data Definition Language It stands for Data Manipulation Language
1 Suman 20000
2 Sanjay 32000
3 Ravi 30000
12 Pen 10 17
13 Eraser 5 15
14 Notebook 15 20
Form Report
2. Values entered in the form can be Values in the report can not be
modified modified.