Advertisements
Online Mock Tests
Chapters
2: File Handling in Python
3: Stack
4: Queue
5: Sorting
6: Searching
7: Understanding Data
▶ 8: Database Concepts
9: Structured Query Language (SQL)
10: Computer Networks
11: Data Communication
12: Security Aspects
Chapter 13: Project Based Learning
![NCERT solutions for Computer Science [English] Class 12 chapter 8 - Database Concepts NCERT solutions for Computer Science [English] Class 12 chapter 8 - Database Concepts - Shaalaa.com](/images/computer-science-english-class-12_6:3cc34948e1364f88bfa74088b5693c7f.jpg)
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.
NCERT solutions for Computer Science [English] Class 12 8 Database Concepts Exercise [Pages 126 - 130]
Give the term for the following:
Collection of logically related records.
Give the term for the following:
DBMS creates a file that contains a description of the data stored in the database.
Give the term for the following:
Attribute that can uniquely identify the tuples in a relation.
Give the term for the following:
Special value that is stored when an actual data value is unknown for an attribute.
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.
Give the term for the following:
Software that is used to create, manipulate and maintain a relational database.
Why foreign keys are allowed to have NULL values? Explain with an example.
Differentiate between Database state and database schema.
Differentiate between Primary key and foreign key.
Differentiate between the Degree and cardinality of a relation.
Compared to a file system, how does a database management system avoid redundancy in data through a database?
What are the limitations of the file systems that can be overcome by a relational DBMS?
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 |
- Roll no 24 may not be interested in sports. Can a NULL value be assigned to that student’s preference field?
- 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?
- Kabaddi was not chosen by any student. Is it possible to have this tuple in the Sports Preferences relation?
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.
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:
- 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?
- 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. - 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?
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)
- Name the attributes of EMPLOYEE, which can be used as candidate keys.
- 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.
- What is the degree of EMPLOYEE and DEPENDENT relation?
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 |
- 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 - 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
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)
- Is it correct to assign Movie_ID as the primary key in the MOVIE relation? If no, then suggest an appropriate primary key.
- Is it correct to assign AudiNo as the primary key in the AUDI relation? If no, then suggest an appropriate primary key.
- Is there any foreign key in any of these relations?
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 |
- Name the primary key of each table.
- Find foreign key(s) in table PROJECT-ASSIGNED.
- Is there any alternate key in table STUDENT? Give justification for your answer.
- Can a user assign duplicate value to the field RollNo of STUDENT table? Justify.
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?
- Insert a student record with a missing roll number value.
- Insert a student record with a missing registration number value.
- Insert a project detail without a submission date.
- Insert a record with registration ID IP-101-19 and ProjectNo 206 in the table PROJECT-ASSIGNED.
Solutions for 8: Database Concepts
![NCERT solutions for Computer Science [English] Class 12 chapter 8 - Database Concepts NCERT solutions for Computer Science [English] Class 12 chapter 8 - Database Concepts - Shaalaa.com](/images/computer-science-english-class-12_6:3cc34948e1364f88bfa74088b5693c7f.jpg)
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.