हिंदी

NCERT solutions for Computer Science [English] Class 12 chapter 8 - Database Concepts [Latest edition]

Advertisements

Chapters

NCERT solutions for Computer Science [English] Class 12 chapter 8 - Database Concepts - Shaalaa.com
Advertisements

Solutions for Chapter 8: Database Concepts

Below listed, you can find solutions for Chapter 8 of CBSE NCERT for Computer Science [English] Class 12.


Exercise
Exercise [Pages 126 - 130]

NCERT solutions for Computer Science [English] Class 12 8 Database Concepts Exercise [Pages 126 - 130]

Exercise | Q 1. a) | Page 126

Give the term for the following:

Collection of logically related records.

Exercise | Q 1. b) | Page 126

Give the term for the following:

DBMS creates a file that contains a description of the data stored in the database.

Exercise | Q 1. c) | Page 126

Give the term for the following:

Attribute that can uniquely identify the tuples in a relation.

Exercise | Q 1. d) | Page 126

Give the term for the following:

Special value that is stored when an actual data value is unknown for an attribute.

Exercise | Q 1. e) | Page 126

Give the term for the following:

An attribute that can uniquely identify tuples of the table but is not defined as the primary key of the table.

Exercise | Q 1. f) | Page 126

Give the term for the following:

Software that is used to create, manipulate and maintain a relational database.

Exercise | Q 2. | Page 126

Why foreign keys are allowed to have NULL values? Explain with an example.

Exercise | Q 3. a) | Page 126

Differentiate between Database state and database schema.

Exercise | Q 3. b) | Page 126

Differentiate between Primary key and foreign key.

Exercise | Q 3. c) | Page 126

Differentiate between the Degree and cardinality of a relation.

Exercise | Q 4. | Page 127

Compared to a file system, how does a database management system avoid redundancy in data through a database?

Exercise | Q 5. | Page 127

What are the limitations of the file systems that can be overcome by a relational DBMS?

Exercise | Q 6. | Page 127

A school has a rule that each student must participate in a sports activity. So each one should give only one preference for sports activity. Suppose there are five students in a class, each having a unique roll number. The class representative has prepared a list of sports preferences as shown below. Answer the following:

Sports Preferences
Roll_no Preference
9 Cricket
13 Football
17 Badminton
17 Football
21 Hockey
24 NULL
NULL Kabaddi
  1. Roll no 24 may not be interested in sports. Can a NULL value be assigned to that student’s preference field?
  2. Roll no 17 has given two preference sports. Which property of relational DBMC is violated here? Can we use any constraint or key in the relational DBMS to check against such violations, if any?
  3. Kabaddi was not chosen by any student. Is it possible to have this tuple in the Sports Preferences relation?
Exercise | Q 7. | Page 127

In another class having 2 sections, the two respective class representatives have prepared 2 separate Sports Preferences tables, as shown below:

Sports preference of section 1 (arranged on roll number column)

Sports Preferences
Roll_no Sports
9 Cricket
13 Football
17 Badminton
21 Hockey
24 Cricket

Sports preference of section 2 (arranged on Sports name column, and column order is also different)

Sports Preferences
Sports Roll_no
Badminton 17
Cricket 9
Cricket 24
Football 13
Hockey 21

Are the states of both relations equivalent? Justify.

Exercise | Q 8. | Page 128

The school canteen wants to maintain records of items available in the school canteen and generate bills when students purchase any item from the canteen. The school wants to create a canteen database to keep track of items in the canteen and the items purchased by students. Design a database by answering the following questions:

  1. To store each item name along with its price, what relation should be used? Decide appropriate attribute names along with their data type. Each item and its price should be stored only once. What restriction should be used while defining the relation?
  2. In order to generate a bill, we should know the quantity of an item purchased. Should this information be in a new relation or a part of the previous relation? If a new relationship is required, decide the appropriate name and data type for attributes. Also, identify the appropriate primary key and foreign key so that the following two restrictions are satisfied:
    i) The same bill cannot be generated for different orders.
    ii) Bill can be generated only for available items in the canteen.
  3. The school wants to find out how many calories students intake when they order an item. In which relation should the attribute ‘calories’ be stored?
Exercise | Q 9. | Page 128

An organisation wants to create a database EMPDEPENDENT to maintain the following details about its employees and their dependent.

EMPLOYEE(AadharNumber, Name, Address, Department, EmployeeID)
DEPENDENT(EmployeeID, DependentName, Relationship)

  1. Name the attributes of EMPLOYEE, which can be used as candidate keys.
  2. The company wants to retrieve details of the dependent of a particular employee. Name the tables and the key which are required to retrieve this detail.
  3. What is the degree of EMPLOYEE and DEPENDENT relation?
Exercise | Q 10. | Page 129

School uniform is available at M/s Sheetal Private Limited. They have maintained SCHOOL_UNIFORM Database with two relations viz. UNIFORM and COST. The following figure shows the database schema and its state.

School Uniform Database
Attributes and Constraints Table: COST
Table: UNIFORM UCode Size COST Price
Attribute UCode UName UColor 1 M 500
Constraints Primary Key Not Nul - 1 L 580
Table: COST 1 XL 620
Attribute UCode Size Price 2 M 810
Constraints Composite Primary Key >0 2 L 890
Table: UNIFORM   2 XL 940
UCode UName UColor   3 M 770
1 Shirt White   3 L 830
2 Pant Grey   3 XL 910
3 Skirt Grey   4 S 150
4 Tie Blue   4 L 170
5 Socks Blue   5 S 180
6 Belt Blue   5 L 210
        6 M 110
        6 L 140
        6 XL 160
  1. Can they insert the following tuples to the UNIFORM Relation? Give reasons in support of your answer.
    i) 7, Handkerchief, NULL
    ii) 4, Ribbon, Red
    iii) 8, NULL, White
  2. Can they insert the following tuples to the COST Relation? Give reasons in support of your answer.
    i) 7, S, 0
    ii) 9, XL, 100
Exercise | Q 11. | Page 130

In a multiplex, movies are screened in different auditoriums. One movie can be shown in more than one auditorium. In order to maintain the record of movies, the multiplex maintains a relational database consisting of two relations viz. MOVIE and AUDI respectively as shown below:

Movie(Movie_ID, MovieName, ReleaseDate) Audi(AudiNo, Movie_ID, Seats, ScreenType, TicketPrice)

  1. Is it correct to assign Movie_ID as the primary key in the MOVIE relation? If no, then suggest an appropriate primary key.
  2. Is it correct to assign AudiNo as the primary key in the AUDI relation? If no, then suggest an appropriate primary key.
  3. Is there any foreign key in any of these relations?
Exercise | Q 12. | Page 130
Student Project Database
Table: STUDENT
Roll No Name Class Section Registration_ID
11 Mohan XI 1 IP-101-15
12 Sohan XI 2 IP-104-15
21 John XII 1 CS-103-14
22 Meena XII 2 CS-101-14
23 Juhi XII 2 CS-101-10
Table: PROJECT
ProjectNo PName SubmissionDate    
101 Airline Database 12/01/2018    
102 Library Database 12/01/2018    
103 Employee Database 15/01/2018    
104 Student Database 12/01/2018    
105 Inventory Database 15/01/2018    
106 Railway Database 15/01/2018    
PROJECT ASSIGNED      
Registration_ID ProjectNo      
IP-101-15 101      
IP-104-15 103      
CS-103-14 102      
CS-101-14 105      
CS-101-10 104      
 
For the above-given database STUDENT-PROJECT, answer the following:
  1. Name the primary key of each table.
  2. Find foreign key(s) in table PROJECT-ASSIGNED.
  3. Is there any alternate key in table STUDENT? Give justification for your answer.
  4. Can a user assign duplicate value to the field RollNo of STUDENT table? Justify.
Exercise | Q 13. | Page 130
Student Project Database
Table: STUDENT
Roll No Name Class Section Registration_ID
11 Mohan XI 1 IP-101-15
12 Sohan XI 2 IP-104-15
21 John XII 1 CS-103-14
22 Meena XII 2 CS-101-14
23 Juhi XII 2 CS-101-10
Table: PROJECT
ProjectNo PName SubmissionDate    
101 Airline Database 12/01/2018    
102 Library Database 12/01/2018    
103 Employee Database 15/01/2018    
104 Student Database 12/01/2018    
105 Inventory Database 15/01/2018    
106 Railway Database 15/01/2018    
PROJECT ASSIGNED      
Registration_ID ProjectNo      
IP-101-15 101      
IP-104-15 103      
CS-103-14 102      
CS-101-14 105      
CS-101-10 104      

For the above-given database STUDENT-PROJECT, can we perform the following operations?

  1. Insert a student record with a missing roll number value.
  2. Insert a student record with a missing registration number value.
  3. Insert a project detail without a submission date.
  4. Insert a record with registration ID IP-101-19 and ProjectNo 206 in the table PROJECT-ASSIGNED.

Solutions for 8: Database Concepts

Exercise
NCERT solutions for Computer Science [English] Class 12 chapter 8 - Database Concepts - Shaalaa.com

NCERT solutions for Computer Science [English] Class 12 chapter 8 - Database Concepts

Shaalaa.com has the CBSE Mathematics Computer Science [English] Class 12 CBSE solutions in a manner that help students grasp basic concepts better and faster. The detailed, step-by-step solutions will help you understand the concepts better and clarify any confusion. NCERT solutions for Mathematics Computer Science [English] Class 12 CBSE 8 (Database Concepts) include all questions with answers and detailed explanations. This will clear students' doubts about questions and improve their application skills while preparing for board exams.

Further, we at Shaalaa.com provide such solutions so students can prepare for written exams. NCERT textbook solutions can be a core help for self-study and provide excellent self-help guidance for students.

Concepts covered in Computer Science [English] Class 12 chapter 8 Database Concepts are Introduction to Database Concepts, File System, Limitations of a File System, Database Management System Software (DBMS), Applications of DBMS, File System to Database Management System (DBMS), Relational Data Model, Key Concepts in Database Management System (DBMS), Properties of a Relational Data Model, Keys in a Relational Database, Terminologies in Relational Data Model.

Using NCERT Computer Science [English] Class 12 solutions Database Concepts exercise by students is an easy way to prepare for the exams, as they involve solutions arranged chapter-wise and also page-wise. The questions involved in NCERT Solutions are essential questions that can be asked in the final exam. Maximum CBSE Computer Science [English] Class 12 students prefer NCERT Textbook Solutions to score more in exams.

Get the free view of Chapter 8, Database Concepts Computer Science [English] Class 12 additional questions for Mathematics Computer Science [English] Class 12 CBSE, and you can use Shaalaa.com to keep it handy for your exam preparation.

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×