CBSE Class 10 Computer Science Database Management System MCQs

Refer to CBSE Class 10 Computer Science Database Management System MCQs provided below. CBSE Class 10 Computers MCQs with answers available in Pdf for free download. The MCQ Questions for Class 10 Computers with answers have been prepared as per the latest syllabus, CBSE books and examination pattern suggested in Class 10 by CBSE, NCERT and KVS. Multiple Choice Questions for Database Management System are an important part of exams for Class 10 Computers and if practiced properly can help you to get higher marks. Refer to more Chapter-wise MCQs for CBSE Class 10 Computers and also download more latest study material for all subjects

MCQ for Class 10 Computers Database Management System

Class 10 Computers students should refer to the following multiple-choice questions with answers for Database Management System in Class 10. These MCQ questions with answers for Class 10 Computers will come in exams and help you to score good marks

Database Management System MCQ Questions Class 10 Computers with Answers

Question. In which relationship, no table has the primary key column?
a. Many to One
b. One to One
c. Many to Many
d. One to Many
Answer : C

Question. A __________ provides the user a systematic way of storing information into the database.
a. Query
b. Form
c. Table
d. None of the above
Answer : B

Question. Referential integrity refers to the _______________ between tables.
a. communication
b. consistency
c. relationship
d. joining
Answer : C

Question. Which of the following is a benefit of using a database management system?
a. Improved data security
b. Improved data accessibility
c. Improved data consistency
d. All of the above
Answer : D

Question. Which field property in Base must be set to “Yes” in order to require a value to be entered in a field?
a. Entry Required
b. Auto Value
c. Format
d. Length
Answer : A

Question. In which view can field properties be set in Base?
a. Design View
b. Datasheet View
c. Both of the above
d. None of the above
Answer : A

Question. __________ will help you to display summarized data from the database.
a. Report
b. Form
c. Table
d. None of the above
Answer : A

Question. Which of the following is NOT a type of database model?
a. Relational
b. Object-oriented
c. Hierarchical
d. Procedural
Answer : D

Question. What does a single data item in a table represent?
a. Columns
b. Attribute
c. Rows
d. Field
Answer : C

Question. Which query will display the details of all the students in increasing order of Roll number?
a. Select * from student order by ‘Rollno’;
b. Select * student order by ‘Rollno’;
c. Select all from student order by ‘Rollno’;
d. Select * from student orderby ‘Rollno’;
Answer : A

Question. Which of the following is an example of an open-source RDBMS?
a. Oracle
b. Microsoft Access
c. OpenOffice Base
d. Microsoft SQL Server
Answer : C

Question. Which toolbar helps us move from one record to another in a form in a database?
a. Formatting Toolbar
b. Image Toolbar
c. Standard Toolbar
d. Form Navigation Toolbar
Answer : D

Question. What is the correct query to increase the salary of all employees by Rs.10000 in a table named Employee with a column name of Salary?
a. Update Employee set Salary = Salary + 10000;
b. Update * Employee set Salary = Salary + 10000.
c. Update table Employee set Salary = Salary + 10000;
d. Update table Employee set Salary = 10000;
Answer : A

Question. Which clauses can be used with the SELECT statement?
a. Order by Clause
b. Where clause
c. Both a) and b)
d. None of the above
Answer : C

 

Short Answer Type Questions

Question. What is database? Give an example. What does DBMS stand for?
Answer : A collection of related information organised as tables is known as database e.g. INGRES, MySQL etc. DBMS stands for DataBase Management System. It is a computer-based record keeping system.

Question. What is Data Control Language?
Answer : Data Control Language is used to create roles, permissions, and referential integrity as well it is used to control access to the database by securing it. These SQL commands are used for providing security to database objects. These commands are GRANT and REVOKE.

Question. What is field in database? Give an example.
Answer : A field is an area, reserved for a specific piece of data. It is also known as attribute. e.g. Customer Name.

Question. What is the value of Entry Required field?
Answer : The value of this property can be Yes or No. If entry required is Yes, the field cannot be absent i.e. should be necessarily present with a value.

Question. What does RDBMS stand for?
Answer : RDBMS stands for Relational Database Management System. It is a type of DBMS that stores data in the form of relations (tables).

Question. A table named School (containing data of students of the whole school) is created, where each record consists of several fields including AdmissionNo (Admission Number), RollNo
(Roll Number), Name. Which field out of these three should be set as the primary key and why?
Answer : AdmissionNo should be set as primary key because admission numbers are unique for each and every students of the school, which is not possible in the case with RollNo and Name.

Question. What is Data Transaction Control Language?
Answer : Transaction control commands manage changes made by DML commands. These SQL commands are used for managing changes affecting the data. These commands are COMMIT, ROLLBACK, and SAVEPOINT.

Question. Define forms and what is the need of using them?
Answer : A form is a window or screen that contains numerous fields or spaces to enter data. Forms can be used to view and edit your data. It is an interface in user specified layout.

Question. What is the difference between ‘Rows’ and ‘Columns’ in a table?
Answer : In a table, rows are called records and columns are termed a fields. A row stores complete information of a record whereas column stores only similar data values for all records.

Question. Give any two disadvantages of the database.
Answer : The two disadiantages of the database are as follows
(i) A database system creates additional complexity and requirements.
(ii) A database system is a multi-user software, which is less efficient.

Question. Write the purpose of DBMS.
Answer : DBMS is used to store logically related information at a centralised location. It facilitates data sharing among all the applications requiring it.

Question. What is table? Also, define Candidate Key.
Answer : A table consists of a number of rows and columns. Each record contains values for the attributes. A candidate key is the smallest subset of the super key for which there does not exist a proper subset that is super key. Any candidate key can be choosen to uniquely identify the records, it is called primary key.

Question. Write one example of data field for which you would set the Required property to Yes.
Answer : In a table, when we declare a field as a primary key, then the field’s Required property must be set to yes because in a primary key field, we need to enter data always.

Question. Write any two uses of database management system.
Answer : The two uses of database management system are as follows
(i) DBMS is used to store data at a centralised location.
(ii) It is used to minimise data redundancy and data inconsistency.

Question. What is the purpose of Default Value field property?
Answer : If there is a situation when you want to enter same value for all records. Then, to avoid typing the same thing many times, you can set as a Default Value property.

Question. Why Memo data type is preferred over Text data type for a field?
Answer : When the length of the field is more than 255 characters. Text data type is not capable to store the project description because its length cannot be more than 255 characters so, Memo data type is preferred over Text data type.

Question. List datatypes available in Numeric data type.
Answer : Datatypes available in numeric data type are TINYINT, SMALLCINT, MEDIUMINT, INT and BIGINT.

Question. Write any two advantages of using database.
Answer : The two advantages of using database are as follows
(i) It can ensure data security.
(ii) It reduces the data redundancy.

Question. What happens when text is entered in a Number type field?
Answer : When we enter text in a Number field and press Enter or press Tab key, it displays a message that ‘‘The value you entered does not match the Number data type in this column.’’

Question. How is data organized in a RDBMS?
Answer : A relational database is a type of database. It uses a structure that allows us to identify and access datain relation to another piece of data in the database. Data in a relational database is organized into tables.

Question. Insert some information into a table COLLEGE, whose structure is given below.
Answer : 

""CBSE-Class-10-Computer-Science-Database-Management-System

LONG ANSWER TYPE QUESTIONS

Question. Describe any four major problems associated with sustainable development.
Answer : Four problems associated with sustained development are as follows
(i) The concept of sustainable development is subject to criticism. What, exactly, is to be sustained in a sustainable development? Any positive rate of exploitation of a non-renewable resource will eventually lead to exhaustion of Earth’s final stock.
(ii) Turning the concept of sustainability into policy raises questions about how to assess the wellbeing of present and future generations. The issue is more complicated because our children do not just inherit environmental pollution and resource depletion, but also enjoy the fruits of our labour, in the forms of education, skills, and knowledge (i.e. human capital), as well as physical capital.
(iii) Poor management of natural resources, combined with growing economic activities, will continue to pose serious challenges to environment. The problem arises because people, institutions and governments have failed to evolve mechanism and policies to strike a balance between development and conservation of resources and preservation of environment.
(iv) The commonly held view that greater economic activity necessarily hurts the environment, is based on static assumptions about technology, tastes and environmental investments. In reality, the relationships between inputs and outputs and the overall effects of economic activities on the environment, are continually changing.

Question. Why is it important to adopt sustainable development? Explain.
Answer : A three-year study using satellites and aerial photography undertaken by the United Nations long ago warned that the environment had deteriorated so badly that it was ‘critical’ in many of eighty-eight countries, investigated. In view of all these findings and problems, sustainable development acquires much importance.
Nature and mankind live and die together.
The Earth’s vital signs reveal a patient in declining health. We need to realise our ethical and moral obligations to the mother Earth. Human beings are caretakers of the planet and responsible trustees of the legacy of future generations.
Due to the realisation of importance of sustainable development, now there is a transcending concern for survival of the people and planet. We need to take a holistic view of the very basis of our existence. The environmental problem does not necessarily signal our demise, rather it is our passport for the future. To save ourselves and our future generations from catastrophe, we require to take a holistic view, an ecological view, seeing the world as an integrated whole, rather than a dissociated collection of parts.

Question. Mention the main principles of sustainable development.
Answer : Main principles of sustainable development are
(i) Respect and care for all forms of life.
(ii) Improving the quality of human life.
(iii) Minimising the depletion of natural resources.
(iv) Conserving the Earth’s vitality and diversity.
(v) Enabling communities to care for their own environment.
(vi) Changing personal attitude and practices towards the environment.

Question. Describe the meaning and importance of sustainable development.
Answer : Sustainable development refers to the process of economic development where resources are used judiciously to satisfy needs of not only present generation but also to conserve them for the use of future generations. Sustainable development takes place without depleting the present natural resources.
The importance of sustainable development is discussed below
(i) It helps to conserve and make use of means and resources for the maximum benefit without wastage.
(ii) It awares the people about the responsibility to use and preserve natural resources.
(iii) It creates the feeling that natural resources are the common property of all and nobody can use the property according to his personal will. It helps to conserve natural and social environment.
(iv) People’s participation is to be given priority in development work in order to achieve the aim of sustainable development.
(v) It attempts to create the concept of maintaining the present work for the future and conserving natural resources for future generation.

More Study Material

CBSE Class 10 Computers Database Management System MCQs

We hope students liked the above MCQs for Database Management System designed as per the latest syllabus for Class 10 Computers released by CBSE. Students of Class 10 should download the Multiple Choice Questions and Answers in Pdf format and practice the questions and solutions given in above Class 10 Computers MCQs Questions on daily basis. All latest MCQs with answers have been developed for Computers by referring to the most important and regularly asked topics which the students should learn and practice to get better score in school tests and examinations. Studiestoday is the best portal for Class 10 students to get all latest study material free of cost.

MCQs for Computers CBSE Class 10 Database Management System

Expert teachers of studiestoday have referred to NCERT book for Class 10 Computers to develop the Computers Class 10 MCQs. If you download MCQs with answers for the above chapter daily, you will get higher and better marks in Class 10 test and exams in the current year as you will be able to have stronger understanding of all concepts. Daily Multiple Choice Questions practice of Computers and its study material will help students to have stronger understanding of all concepts and also make them expert on all critical topics. You can easily download and save all MCQs for Class 10 Computers also from www.studiestoday.com without paying anything in Pdf format. After solving the questions given in the MCQs which have been developed as per latest course books also refer to the NCERT solutions for Class 10 Computers designed by our teachers

Database Management System MCQs Computers CBSE Class 10

All MCQs given above for Class 10 Computers have been made as per the latest syllabus and books issued for the current academic year. The students of Class 10 can refer to the answers which have been also provided by our teachers for all MCQs of Computers so that you are able to solve the questions and then compare your answers with the solutions provided by us. We have also provided lot of MCQ questions for Class 10 Computers so that you can solve questions relating to all topics given in each chapter. All study material for Class 10 Computers students have been given on studiestoday.

Database Management System CBSE Class 10 MCQs Computers

Regular MCQs practice helps to gain more practice in solving questions to obtain a more comprehensive understanding of Database Management System concepts. MCQs play an important role in developing understanding of Database Management System in CBSE Class 10. Students can download and save or print all the MCQs, printable assignments, practice sheets of the above chapter in Class 10 Computers in Pdf format from studiestoday. You can print or read them online on your computer or mobile or any other device. After solving these you should also refer to Class 10 Computers MCQ Test for the same chapter

CBSE MCQs Computers Class 10 Database Management System

CBSE Class 10 Computers best textbooks have been used for writing the problems given in the above MCQs. If you have tests coming up then you should revise all concepts relating to Database Management System and then take out print of the above MCQs and attempt all problems. We have also provided a lot of other MCQs for Class 10 Computers which you can use to further make yourself better in Computers

Where can I download latest CBSE MCQs for Class 10 Computers Database Management System

You can download the CBSE MCQs for Class 10 Computers Database Management System for latest session from StudiesToday.com

Can I download the MCQs of Database Management System Class 10 Computers in Pdf

Yes, you can click on the links above and download topic wise MCQs Questions PDFs for Database Management System Class 10 for Computers

Are the Class 10 Computers Database Management System MCQs available for the latest session

Yes, the MCQs issued by CBSE for Class 10 Computers Database Management System have been made available here for latest academic session

How can I download the Database Management System Class 10 Computers MCQs

You can easily access the links above and download the Database Management System Class 10 MCQs Computers for each topic

Is there any charge for the MCQs with answers for Class 10 Computers Database Management System

There is no charge for the MCQs and their answers for Class 10 CBSE Computers Database Management System you can download everything free

How can I improve my MCQs in Class 10 Computers Database Management System

Regular revision of MCQs given on studiestoday for Class 10 subject Computers Database Management System can help you to score better marks in exams

What are MCQs for Class 10 Computers Database Management System

Multiple Choice Questions (MCQs) for Database Management System Class 10 Computers are objective-based questions which provide multiple answer options, and students are required to choose the correct answer from the given choices.