{"id":42247,"date":"2023-01-31T10:00:35","date_gmt":"2023-01-31T04:30:35","guid":{"rendered":"https:\/\/www.aplustopper.com\/?p=42247"},"modified":"2023-02-01T09:20:04","modified_gmt":"2023-02-01T03:50:04","slug":"plus-two-computer-science-chapter-wise-previous-questions-chapter-8","status":"publish","type":"post","link":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/","title":{"rendered":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 8 Database Management System"},"content":{"rendered":"

Kerala Plus Two Computer Science Chapter Wise Previous Questions and Answers Chapter 8 Database Management System<\/h2>\n

Question 1.
\nComponents of DBMS [MARCH – 2008]<\/span> (3)
\nAnswer:
\na) databases – database is an organized collection of information.
\nb) Data Definition Language(DDL) – Data Definition Language is used to specify the definitions of Da-tabase Schema. The result of compilation of DDL statements is a set of tables stored in a special file called data dictionary.
\nc) Data Manipulation Language(DML) – It is a language that enable users to access or manipulate data in the database. It also provides interfaces with programming languages.
\nd) Users – users interact with DBMS indirectly via ; application programs or directly via simple query language.<\/p>\n

Question 2.
\nWhat are the advantages of DBMS? [MARCH – 2008] <\/span>(5)
\nOR
\nConsider there is a strike against the introduction of computer in your firm. How can you convince the ben-efits of computerization to the employees by pointing out the benefits of database over manual system?
\nAnswer:
\n1) Data Redundancy .Duplication of data is known as redundancy, i.e., the same data may be repeated in many files. It leads to higher storage and access cost. So data redundancy should be eliminated.<\/p>\n

2) Inconsistency can be avoided: If data redundancy exist, it may lead to data inconsistency. If redun-dancy is removed then inconsistency can be avoided.<\/p>\n

3) Data can be shared: If the computers are connected to a network, the data stored in the database can be shared among several users or programs.<\/p>\n

4) Standards can be enforced: There is a standard BIS (Bureau of Indian Standards) in the field of Gold and ISBN (International Standard Book Number) in the field of publication. Similarly here is also some standards like ANSI(American National Standards Institute), ISO (International Organization for standardization), etc.. For example a filed \u201cName\u201d should have 40 characters is a standard.<\/p>\n

5) Security restrictions can be applied: The database is of great value to a company or Organization. Data security means protection of data against accidental or intentional disclosure or unauthorized destruction or modification by un-authorized persons.<\/p>\n

6) Integrity can be maintained: It ensures that the data entered in the database is correct. The data may contain incorrect information for example a date of birth can be 30\/30\/2001. To avoid this DBMS defines integrity check.<\/p>\n

7) Efficient data access: It stored huge amount of data efficiently and can be retrieved whenever a need arise.<\/p>\n

8) Crash recovery: Sometimes all ora portion of the data is lost when a system crashes. A good DBMS helpsto recover data afterthe system crashed.<\/p>\n

Question 3.
\nThe repetition of same data in a file system is known as ……….. . [MARCH – 2009]<\/span>
\nAnswer:
\nData Redundancy<\/p>\n

Question 4.
\nWhat is a Cartesian product? [MARCH – 2009]<\/span>
\nAnswer:
\nCartesian product returns a relation consisting of all possible combinations of the tuple from two relations. Which is a binary operation. It is denoted by X. It is also called Cross Product.<\/p>\n

Question 5.
\nExplain the different levels of data independence. [MARCH – 2009] <\/span>(2)
\nAnswer:
\nData independence is the ability to modify the schema definition in one level without affecting the schema definition at the next higher level. There are two levels Of data independence, Physical data independence and. Logical data independence.<\/p>\n

Question 6.
\nName the different data models available for database systems. Which of them is the most preferred one? Briefly explain with a suitable example. [FEBRUARY – 2009]<\/span> (S)
\nAnswer:
\nThere are three models:-
\na) Hierarchical Model:
\nIt assigns records to different levels of hierarchy. A lower level record is called the child and the higher level is called the parent. Data redundancy is the disadvantage of this model.<\/p>\n

b) Network Model : It is similar to hierarchical model, but each child record can have more than one parent record. This model eliminates the re-dundancy encountered in the hierarchy model, but it has a high degree of complexity. It was introduced by CODASYL-DBTG in 1971.<\/p>\n

c) Relational Model : It is based on the concept introduced by E F Godd. It composed of one or more tables. Here tables are called relations, rows are called tuples and the columns are called at-tributes. It has no data redundancy and complex-ity. So this is the best model.<\/p>\n

Question 7.
\nExplain two unary operations in RDBMS using an example. [FEBRUARY – 2009] <\/span>(3)
\nAnswer:
\n1) Select: It is used to select tuples in a relation that satisfy a selection condition. To denote selection the lowercase Greek letters are used. The condition appears as a subscript to a. The relation is given in the parenthesis.
\nEg:
\nTo select the tuples whose salary > 5000 from Employee relation Employee)<\/p>\n

2) Project: It selects certain columns from the table and discardsthe other columns. It is denoted by the Greek letter n.
\nEg:
\nTo select name and salary from the relation Employee.
\nnna\u2122,salary (Employee)<\/p>\n

Question 8.
\nSelect a terminology which is not a part of DBMS. [JUNE – 2009]<\/span> (1)
\na) Relation b) Function c) Domain d) Tuple
\nAnswer:
\nFunction<\/p>\n

Question 9.
\nExplain the different levels of data abstraction. [JUNE – 2009] <\/span>(3)
\nAnswer:
\n1) Physical Level is the lowest level. It describes how the data is actually stored in the storage medium. At physical level complex low-level data structures are described in detail.<\/p>\n

2) Logical level describes what data are stored in the database and what relationships exist among data. Here database is described in terms of simple structures. Records are defined in this level. Programmers work at this level.<\/p>\n

3) View level is the highest level of data abstraction. It is concerned with the way in which the users view the database. It describes only part of the database.<\/p>\n

Question 10.
\nWhat are the components of DBMS? Explain. [JUNE – 2009] <\/span>(3)
\nAnswer:
\na) databases – database is an organized collection of information.
\nb) Data Definition Language(DDL) – Data Definition Language is used to specify the definitions of Da-tabase Schema. The result of compilation of DDL statements is a set of tables stored in a special file called data dictionary.
\nc) Data Manipulation Language(DML) – It is a lan-guage that enable users to access or manipulate data in the database. It also provides interfaces with programming languages.
\nd) Users – users interact with DBMS indirectly via application programs or directly via simple query language.<\/p>\n

Question 11.
\nExplain the structure of a file. [JUNE – 2009] <\/span>(2)
\nAnswer:
\nThe structure of a file
\nField: A field is the smallest unit of data. Ex: roll number, name.<\/p>\n

Record : The collection of related fields is called a record. Ex: The information about a student File: A file is a collection of related records. Ex: The students details of a class.<\/p>\n

Question 12.
\n__________ is the smallest unit of data. [JUNE – 2009]<\/span> (1)
\na) Record
\nb) file
\nc) key
\nd) field
\nAnswer:
\nd. Field<\/p>\n

Question 13.
\nConsider the database of Online Ticket reservation. Explain the classification of the users of this database. [MARCH – 2010] <\/span>(3)
\nAnswer:<\/p>\n\n\n\n\n\n\n
A<\/td>\nB<\/td>\n<\/tr>\n
Database Administrator<\/td>\nb) Person who has a central con\u00adtrol over definition and DBMS.<\/td>\n<\/tr>\n
Application Programer<\/td>\nc) Computer professionals who in\u00adteract with the DBMS through Application programs<\/td>\n<\/tr>\n
Users<\/td>\na) Not concerned with or even aware of details of the DBMS.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

Question 14.
\nThere is an attribute Roll number in the table STUDENT. This attribute is also the candidate key in the table EXAM. So the Roll number is considered as key in the table EXAM. [MARCH – 2010]<\/span>
\n(a) Foreign
\n(b) Primary
\n(C) Alternate
\n(d) Super
\nAnswer:
\n(a) Foreign<\/p>\n

Question 15.
\nConsider the following table and write relational al-gebra operations for the following: [MARCH – 2010] <\/span>(3)
\nStudent<\/p>\n\n\n\n\n\n\n\n\n
Regno<\/td>\nName<\/td>\nMark<\/td>\nMark2<\/td>\nTotal<\/td>\n<\/tr>\n
101<\/td>\nABC<\/td>\n18<\/td>\n36<\/td>\n54<\/td>\n<\/tr>\n
102<\/td>\nXYZ<\/td>\n45<\/td>\n48<\/td>\n93<\/td>\n<\/tr>\n
103<\/td>\nZYX<\/td>\n38<\/td>\n46<\/td>\n84<\/td>\n<\/tr>\n
104<\/td>\nBCD<\/td>\n45<\/td>\n46<\/td>\n91<\/td>\n<\/tr>\n
105<\/td>\nDEF<\/td>\n32<\/td>\n41<\/td>\n73<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

a) To display those tuples from STUDENT relation where total is greater than 90.
\nb) To display cnly Regno and Name of all students.
\nAnswer:
\na) \u03c3Total>90<\/sub> (Student)
\nb) \u03c0Regno, Name<\/sub>\u00a0(Student)<\/p>\n

Question 16.
\nBriefly explain the different keys that are used in RDBMS. [MARCH – 2010] <\/span>(4)
\nAnswer:<\/p>\n

    \n
  1. Candidate Key:lt is a set of attributes that uniquely identifies a row. There may be more than candidate key and may be a combination of more than one attribute.<\/li>\n
  2. Primary Key : A primary key is one of the Candidate Keys. It is a set of one or more attributes that can uniquely identify tuples in a relation.<\/li>\n
  3. Alternate Key: The Candidate key that is not the primary key is called the alternate key.<\/li>\n
  4. Super Key : A combination of a primary key with any other attribute or group of attributes is called a super key.<\/li>\n
  5. Foreign Key : Asingle attribute or a set of attributes, which is a candidate key in another table, is called foreign key.<\/li>\n<\/ol>\n

    Question 17.
    \nMatch the following with the levels of abstraction to which the users are primarily associated: [MARCH -2011] <\/span>(3)
    \nLevels of Abstraction – Users
    \n1. Physical level – A. Naive users
    \n2. Logical level – B. Database administrator
    \n3. View level – C. Application programmer
    \nAnswer:
    \n1) Physical Level – Database Administrator
    \n2) Logical Level – Application programmer
    \n3) View Level – Naive users<\/p>\n

    Question 18
    \nA data model provides a way to represent data and their relationships. [MARCH -2011] <\/span>(3)
    \na) Which data model assigns records to diferent levels of hierarchy?
    \nb) Briefly explain the relational data model.
    \nAnswer:
    \na) Hierarchical Data Model
    \nb) In relational data model data are stored as tables. Here the term relation means table. A table consists of rows and columns. Columns mean attributes and rows means tuples.<\/p>\n

    Question 19.
    \nExplain how data is organized for effective storage and retrieval of information. [MARCH -2011] <\/span>(2)
    \nAnswer:
    \nThere are three data models used for effective storage and retrieval of information. They are hierarchical, network and relational data models.<\/p>\n

    Question 20.
    \nWhich is not an RDBMS package? [MARCH -2011] <\/span>(1)
    \na) Oracle
    \nb) SQL Server
    \ne) Mysql
    \nd) HTML
    \nAnswer:
    \n(d) HTML<\/p>\n

    Question 21.
    \nThe smallest unit of stored data in a database is [MARCH -2011] <\/span>(1)
    \nAnswer:
    \nField<\/p>\n

    Question 22.
    \nMini created a relation in which two of the tuples have the same combination of values for all their at tributes.
    \nIs this allowed? Give reason. [MARCH -2011] <\/span>(2)
    \nAnswer 1.
    \nNo. It is not allowed because a good DBMS does not allow duplication of the same data. i.e. data redundancy is not allowed.<\/p>\n

    Answer 2.
    \nYes. Same values of data is allowed if primary key or unique key is not defined in the relation.<\/p>\n

    Question 23.
    \nWhat \u00a1s the importance of primary key? [MARCH -2011]<\/span> (2)
    \nAnswer:
    \nKey: A pnmary key is one of the Candidate Keys. It is a set of one or more attributes that can uniquely identify tiiples in a relation.<\/p>\n

    Question 24.
    \nDiscuss the levels of data abstraction in DBMS. [March – 2016] <\/span>(3)
    \nAnswer:
    \n1) Physical Level is the lowest level.lt describes how ‘ the data is actually stored in the storage medium. At physical level complex low-level data structures are described in detail.<\/p>\n

    2) Logical level describes what data are stored in the database and what relationships exist among data. Here database is described in terms of simple structures. Records are defined in this level. Programmers work at this level.<\/p>\n

    3) View level is the highest level of data abstraction. It is concerned with the way in which the users view the database. It describes only part of the database.<\/p>\n

    Question 25.
    \nIn the ACCOUNT relation shown below [March – 2016]<\/span><\/p>\n\n\n\n\n\n\n\n
    Acc.Number<\/td>\n\u00a0Name<\/td>\n\u00a0Balance<\/td>\n\u00a0Type<\/td>\n<\/tr>\n
    1000<\/td>\n\u00a0Simon<\/td>\n\u00a01,50,000<\/td>\n\u00a0SB<\/td>\n<\/tr>\n
    i001<\/td>\n\u00a0Abey<\/td>\n\u00a02,00,000<\/td>\n\u00a0SB<\/td>\n<\/tr>\n
    1002<\/td>\n\u00a0jambal<\/td>\n\u00a01,00,000<\/td>\n\u00a0SB<\/td>\n<\/tr>\n
    1003<\/td>\n\u00a0Ram<\/td>\n\u00a02.50,000<\/td>\n\u00a0SB<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

    a) Identify the primary keys and candidate keys.
    \nb) Select all account holders with balance greater than Rs. 2,00,000. (2)
    \nAnswer:
    \na) Primary key-ACC. Number
    \nCandidate keys – Name and Balance<\/p>\n

    b) \u03c32Balance>200000<\/sub> (ACCOUNT)
    \nOR
    \nSelect * from Account where Balance>200000<\/p>\n

    Question 26.
    \nWhat are the major advantages of the relational model over other data models? [Say – 2016] <\/span>(1)
    \nAnswer:
    \nThe relational data model has no redundancy and no complexity.<\/p>\n

    Question 27.
    \na) Classify the following operations in relational algebra into unary and binary operations:
    \n(1) UNION
    \n(2) SELECT
    \n(3) SET DIFFERENCE
    \n(4) PROJECT (1)<\/p>\n

    b) Explain about SELECT, INTERSECTION and SET DIFFERENCE operations with example. [Say <\/span>– 2016]<\/span> (3)
    \nAnswer:
    \na) Unary Binary
    \n(2) SELECT
    \n(1) UNION
    \n(4) PROJECT
    \n(3) SET DIFFERENCE<\/p>\n

    b) SELECT operation
    \nSELECT operation is used to select tuples in a relation that satisfy a selection condition. Greek letter cr (sigma) is used to denote the operation.<\/p>\n

    Syntax,
    \n\u03c3Condition<\/sub>\u00a0(relation)<\/p>\n

    eg. \u03c3Salary<100000 <\/sub>(EMPLOYEE)-selects tuple whose salary is less than 10000 from EMPLOYEE relation.<\/p>\n

    Intersection operation
    \nThis operation returns a relation consisting of all the tuples appearing in both of the specified rela-tions. It is denoted by n. It can takes place only on compatible relations, e.g. FOOTBALL \u2229 CRICKET returns the players who are in both football and cricket teams.<\/p>\n

    Set difference operation (-)
    \nAll tuples appearing in the first relation and not in the second.<\/p>\n

    Question 28.
    \na) Discuss the advantages of DBMS. (3)
    \nb) Create a database schema for the relation VEHICLE. [MARCH -2017] <\/span>(2)
    \nAnswer:
    \na) Advantages of DBMS
    \n1) Data Redundancy-It means duplication of data. DBMS eliminates redundancy. DBMS does not store more than one copy of the same data.<\/p>\n

    2) Inconsistency can be avoided – If redundancy occurs there is a chance to inconsistency. If redundancy is removed then inconsistency cannot occur.<\/p>\n

    3) Data can be shared – The data stored in the database can be shared by the users or programs.<\/p>\n

    4) Standards can be enforced – The data in the database follows some standards. Eg: a field ‘Name\u2019 should have 40 characters long. Some standards are ANSI, ISO, etc.<\/p>\n

    5) Security restrictions can be applied – The data is of great value so it must be kept secure and private. Data security means the protection of data against accidental or intentional disclosure or unauthorized destruction or modification by unauthorized person.<\/p>\n

    6) Integrity can be maintained – It ensures that the data is to be entered in the databse is correct.<\/p>\n

    7) Efficient data access – It stored huge amount of data efficiently and can be retrieved whenever a need arise.<\/p>\n

    8) Crash recovery – Sometimes all or a portion of the data is lost when a system crashes. A good DBMS helps to recover data after the system crashed.<\/p>\n

    b)<\/p>\n\n\n\n\n\n\n
    RegNo<\/td>\nOwner Name<\/td>\nMake<\/td>\nYear of Mfr<\/td>\nCub_Capacity<\/td>\n<\/tr>\n
    KL-45-L-100<\/td>\nAchuth<\/td>\nTOYOTO<\/td>\n2015<\/td>\n2500<\/td>\n<\/tr>\n
    KL-45-N-1000<\/td>\nRAJU<\/td>\nHONDA<\/td>\n2016<\/td>\n1100<\/td>\n<\/tr>\n
    KL-45-P<\/td>\nJOSE<\/td>\nMARUTHI<\/td>\n2017<\/td>\n1000<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

    Question 29.
    \n_________ in a table gives the complete data of a particular entity. [Say – 2017]<\/span>
    \na) Tuple
    \nb) Attribute
    \nc) Domain
    \nd) Schema (1)
    \nAnswer:
    \nd) Schema<\/p>\n

    Plus Two Computer Science Chapter Wise Assess Questions and Answers<\/h3>\n

    Question 1.
    \nWho is responsible for managing and controlling the activities associated with the database? (1 Mark)
    \na) Database administrator
    \nb) Programmer
    \nc) Native user
    \nd) End user
    \nAnswer:
    \na) Database administrator<\/p>\n

    Question 2.
    \nIn the relational model, cardinality is the _______ . (1 Mark)
    \na) numberoftuples
    \nb) number of attributes
    \nc) number of tables
    \nd) number of constraints
    \nAnswer:
    \na) numberoftuples<\/p>\n

    Question 3.
    \nCartesian product in relational algebra is _______ . (1 Mark)
    \na) a Unary operator
    \nb) a Binary operator
    \nc) a Ternary operator
    \nd) not defined
    \nAnswer:
    \nb) a Binary operator<\/p>\n

    Question 4.
    \nAbstraction of the database can be viewed as _________ . (1 Mark)
    \na) two levels
    \nb) four levels
    \nc) three levels
    \nd) one level
    \nAnswer:
    \nc) three level<\/p>\n

    Question 5.
    \nIn a relational model, relations are termed as __________ . (1 Mark)
    \na) tuples
    \nb) attributes
    \nc) tables
    \nd) rows
    \nAnswer:
    \nc) tables<\/p>\n

    Question 6.
    \nIn the abstraction of a database system the external level is the ___________ . (1 Mark)
    \na) physical level
    \nb) logical level
    \nc) conceptual level
    \nd) view level
    \nAnswer:
    \nd) view level<\/p>\n

    Question 7 (1 Mark)
    \nRelated fields in a database are grouped to form a ___________ .
    \na) data file
    \nb) data record
    \nc) menu
    \nd) bank
    \nAnswer:
    \nb) data record<\/p>\n

    Question 8.
    \nA relational database developer refers to a record as ___________ . (1 Mark)
    \na) criteria
    \nb) relation
    \nc) tuple
    \nd) attribute
    \nAnswer:
    \nc) tuple<\/p>\n

    Question 9.
    \nAn advantage of the database management approach is ___________ . (1 Mark)
    \na) data is dependent on programs
    \nb) data redundancy increases
    \nc) data is integrated and can be accessed by multiple programs
    \nd) none of the above
    \nAnswer:
    \nc) data is integrated and can be accessed by multiple programs<\/p>\n

    Question 10.
    \nData independence means (1 Mark)
    \na) data is defined separately and not included in programs
    \nb) programs are not dependent on the physical at-tributes of data
    \nc) programs are not dependent on the logical at-tributes of data
    \nd) both (b) and (c)
    \nAnswer:
    \nd) both (b) and (c)<\/p>\n

    Question 11.
    \nKey to represent relationship between tables is called ___________ . (1 Mark)
    \na) primary key
    \nb) candidate Key
    \nc) foreign Key
    \nd) alternate Key
    \nAnswer:
    \nc) foreign key<\/p>\n

    Question 12.
    \nWhich of the folowing operations is used if we are interested only in certain columns of a table? ___________ . (1 Mark)
    \na) Projection
    \nb) Selection
    \nc) Union
    \nd) Select
    \nAnswer:
    \na) Projection<\/p>\n

    Question 13.
    \nWhich of the following operations need the partici-pating relations to be union compatible? ___________ . (1 Mark)
    \na) UNION
    \nb) INTERSECTION
    \nc) SET DIFFERENCE
    \nd) All of the above
    \nAnswer:
    \nd) All of the above<\/p>\n

    Question 14.
    \nWhich database level is closest to the users? ___________ . (1 Mark)
    \na) External
    \nb) Internal
    \nc) Physical
    \nd) Conceptual
    \nAnswer:
    \na) View level (External)<\/p>\n

    Question 15.
    \nThe result of the UNION operation between R1 and R2 is a relation that includes ___________ . (1 Mark)
    \na) all the tuples of R1
    \nb) all the tuples of R2
    \nc) all the tuples of R1 andR2
    \nd) all the tuples of R1 and R2 which have common columns
    \nAnswer:
    \n(d) All the tuples of R1 and R2 (eliminating the duplication)<\/p>\n

    Question 16.
    \nA file manipulation command that extracts some of the records from a file is called ___________ . (1 Mark)
    \na) Select
    \nb) Project
    \nc) Join
    \nd) Product
    \nAnswer:
    \na) select<\/p>\n

    Question 17.
    \nAn instance of relational schema R (A, B, C) has distinct values of A including NULL values. Which one of the following is true? ___________ . (1 Mark)
    \na) A is a candidate key
    \nb) A is not a candidate key
    \nc) A is a primary key
    \nd) Both (a) and (c)
    \nAnswer:
    \na) A is a candidate key<\/p>\n

    Question 18.
    \nHow many distinct tuples are there in relation instance with cardinality 22? ___________ . (1 Mark)
    \na) 22
    \nb) 11
    \nc) 1
    \nd) none
    \nAnswer:
    \na) 22<\/p>\n

    Question 19.
    \nA set of possible data values is called ___________ . (1 Mark)
    \na) Attribute
    \nb) Degree
    \nc) Tuple
    \nd) Domain
    \nAnswer:
    \nd) Domain<\/p>\n

    Question 20.
    \nWhy should you choose a database system instead of simply storing data in conventional files? (5 Mark)
    \nAnswer:
    \nAdvantages of DBMS over conventional files Data Redundancy – It means duplication of data. DBMS eliminates redundancy. DBMS does not store more than one copy of the same data. Inconsistency can be avoided – If redundancy occurs there is & chance to inconsistency. If redundancy is removed then inconsistency cannot occur.<\/p>\n

    Efficient data access -: It stored huge amount of data efficiently and can be retrieved whenever a need arise.<\/p>\n

    Data can be shared – The data stored in the database can be shared by the users or programs. Standards can be enforced – The data in the database follows some standards. Eg: a field \u2018Name\u2019 should have 40 characters long. Some standards are ANSI, ISO, etc.<\/p>\n

    Security restrictions can be applied – The data is of great value so it must be kept secure and private. Data security means the protection of data against accidental of intentional disclosure or unauthorized destruction or modification by unauthorized person.<\/p>\n

    Integrity can be maintained – It ensures that the data is to be entered in the database is correct.<\/p>\n

    Crash recovery- Some times all ora portion of the data is lost when a system crashes. A good DBMS he’psto recover data after the system crashed.<\/p>\n

    Question 21.
    \nExplain the different levels of data abstraction in DBMS? (3 Mark)
    \nAnswer:
    \nLevels of Database Abstraction –
    \n1) Physical Level (Lowest Level) – It describes how the data is actually stored in the storage medium.
    \n2) Logical Level (Next Higher Level) – It describes what data are stored in the database.
    \n3) View Level (Highest level) – It is closest to the users. It is concerned with the way in which the individual users view the data.<\/p>\n

    Question 22.
    \nHow are schema layers related to the concepts of logical and physical data independence? (3 Mark)
    \nAnswer:
    \nData Independence – It is the ability to modify the scheme definition in one level without affecting the scheme definition at the next higher level.
    \na) Physical Data independence – If is the ability to modify the physical scheme without causing application programs to be rewritten.
    \nb) Logical Data Independence – It is the ability to modify the logical scheme without causing application programs to be rewritten.<\/p>\n

    Question 23.
    \nConsider the instance of the EMPLOYEE relation shown in the following table. Identify the attributes, degree, cardinality and domain of Name and Emp_code. (3 Mark)<\/p>\n\n\n\n\n\n\n\n
    EmpCode<\/td>\nName<\/td>\nDepartment<\/td>\nDesignation<\/td>\nSalary<\/td>\n<\/tr>\n
    1000<\/td>\nSudheesh<\/td>\nPurchase<\/td>\nManager<\/td>\n25000<\/td>\n<\/tr>\n
    1001<\/td>\nDhanya<\/td>\nSales<\/td>\nManager<\/td>\n25000<\/td>\n<\/tr>\n
    1002<\/td>\nFathima<\/td>\nMarketing<\/td>\nClerk<\/td>\n12000<\/td>\n<\/tr>\n
    1003<\/td>\nShajan<\/td>\nSales<\/td>\nClerk<\/td>\n13000<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

    Answer:
    \nAttributes- These are column names, i.e, Emp_Code, Name, Department, Designation and Salary Degree(CD) -the number of Columns is the Degree
    \ni. e Degree is 5(Here 5 columns)
    \nCardinality (RC)-: the number of Rows is the Cardinality
    \ni. e. Cardinality is 4(Here 4 rows)
    \nDomain is the pool of possible values
    \nDomain of Name is a String(Sudheesh, Dhanya,
    \nFathima, Shajan.etc)
    \nDomain of Emp_Code is a number (1000,1001,1002, 1003, etc)<\/p>\n

    Question 24.
    \nIdentify primary key, candidate keys and alternate keys in the instance of EMPLOYEE relation in Question 23. (3 Mark)
    \nAnswer:
    \nCandidate key – It is used to uniquely identify the row.
    \nEmp_code and Emp_Code + Department (Composite) are the candidate keys
    \nPrimary key – It is a set of one or more attributes used to uniquely identify a row.
    \nEmpjcode is the primary key
    \nAlternate key – A candidate key other than the primary key.
    \nWe set Emp_code as the primary key then Emp_code+ Department is the alternate key<\/p>\n

    Question 25.
    \nConsider the instance of the STUDENT relation shown in the following table Assume Reg_no as the primary key. (3 Mark)
    \na) Identify the candidate keys and alternate keys in the STUDENT relation
    \nb) How are the primary key and the candidate key-related?<\/p>\n\n\n\n\n\n\n\n
    Reg_no<\/td>\nName<\/td>\nBatch<\/td>\nResult<\/td>\nMarks<\/td>\n<\/tr>\n
    101<\/td>\nSachin<\/td>\nScience<\/td>\nPass<\/td>\n480<\/td>\n<\/tr>\n
    103 –<\/td>\nFathima<\/td>\nHumanities<\/td>\nFall<\/td>\n200<\/td>\n<\/tr>\n
    106<\/td>\nJoseph<\/td>\nCommerce<\/td>\nPass<\/td>\n360<\/td>\n<\/tr>\n
    108<\/td>\nBincy<\/td>\nScience<\/td>\nPass<\/td>\n300<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

    Answer:
    \na) Reg_no and Reg_no+Batch are the candidate keys. We set Reg_no as the primary key hence Reg_no+Batch is the alternate key
    \nb) Candidate Key :lt is a set of attributes that uniquely identifies a row. There may be more than candidate key and may be a combination of more than one attribute.<\/p>\n

    Primary Key: A primary key is one of the Candidate Keys. It is a set of one or more attributes that can uniquely identify tuples in a relation.<\/p>\n

    Question 26.
    \nWhat is a database? Describe the advantages and disadvantages of using DBMS. (5 Mark)
    \nAnswer:
    \nA Database is a collection of large volume of data.<\/p>\n

    Advantages of DBMS
    \nData Redundancy – It means duplication of data. DBMS eliminates redundancy. DBMS does not store more than one copy of the same data.
    \nInconsistency can be avoided – If redundancy occurs there is a chance to inconsistency. If redundancy is removed then inconsistency cannot occur. Efficient data access It stored huge amount of data efficiently and can be retrieved whenever a need arise.<\/p>\n

    Data can be shared – The data stored in the database can be shared by the users or programs.<\/p>\n

    Standards can be enforced – The data in the database follows some standards. Eg: a field \u2018Name\u2019 should have 40 characters long. Some standards are ANSI, ISO, etc.<\/p>\n

    Security restrictions can be applied – The data is of great value so it must be kept secure and private. Data security means the protection of data against accidental or intentional disclosure or unauthorized destruction or modification by unauthorized person.<\/p>\n

    Integrity can be maintained – It ensures that the data is to be entered in the database is correct.<\/p>\n

    Crash recovery- Sometimes all ora portion of the data is lost when a system crashes . A good DBMS helps to recover data after the system crashed.<\/p>\n

    Question 27.
    \nWhat is data independence? Explain the difference between physical and logical data independence. (3 Mark)
    \nAnswer:
    \nData Independence – It is the ability to modify the scheme definition in one level without affecting the scheme definition at the next higher level.
    \na) Physical Data Independence – It is the ability to modify the physical scheme without causing application programs to be rewritten.
    \nb) Logical Data Independence – It is the ability to modify the logical scheme without causing application programs to be rewritten.<\/p>\n

    Question 28 (3 Mark)
    \nEnforcement of standard is an essential feature of DBMS. How are these standards applicable in a da-tabase?
    \nAnswer:
    \nThere is a standard BIS (Bureau of Indian Standards) in the field of Gold and ISBN (International Standard Book Number) in the field of publication. Similarly here is also some standards like ANSI(American National Standards Institute), ISO (International Organization for standardization), etc.. For example a filed \u201cName\u201d should have 40 characters is a standard.<\/p>\n

    Question 29.
    \nCardinality of a table T1 is 10 and of table T2 is 8 and the two relations are union compatible. If the cardi-nality of result T1 \u222a T2 is 13, then what is the cardi-nality of T1 \u2229 T2? Justify your answer. (3 Mark)
    \nAnswer:
    \nCardinalty of table T1 is 10 means it has 10 rows Cardinalty of table T2 is 8 means it has 8 rows Normally T1 \u222a T2 is 10+8 = 18 But Here T1 \u222a T2 is 13 means after eliminating duplication of 5 rows this happened.<\/p>\n

    This means 5 rows are common. That is T1 \u2229 T2 is 5<\/p>\n

    Question 30.
    \nCardinalityofatableTI is10andoftableT2is8and the two relations are union compatible. (3 Mark)
    \na) What will be the maximum possible cardinality of T1 \u222a T2?
    \nb) What will be the minimum possible cardinality of T1 \u2229 T2?
    \nAnswer:
    \na) Degree(CD) -the number of Columns is the Degree Cardinality (RC)-: the number of Rows is the Cardinality T1 \u222a T2 = Sum of cardinalities of Table 1 and Table 2
    \ni. e.T1 \u222a T2 = 10 + 8 = 18<\/p>\n

    b) T1 \u2229 T2 is the common rows(tuples) in T1 and T2 If there is no common tuples then T1 \u2229 T2 is 0 hence the cardinality is 0.<\/p>\n

    Question 31.
    \nConside the relations, City (city_name, state) and Hotel (name, address, city_name). Answer the following queries in relational algebra (5 Mark)
    \na) Find the names and address of hotels in Kochi.
    \nb) List the details of cities in Kerala state.
    \nc) List the names of the hotels in Thrissur.
    \nd) Find the names of different hotels.
    \ne) Find the names of hotels in Kozhikode or Munnar.
    \nAnswer:
    \n\"Plus<\/p>\n

    Question 32.
    \nUsing the instance of the EMPLOYEE relation shown in question 23, write the result of the following relational algebra expressions. (5 Mark)
    \n\"Plus
    \nAnswer:
    \na)<\/p>\n\n\n\n\n\n
    Emp_Code<\/td>\nName Department<\/td>\nDesignation : Salary<\/td>\n<\/tr>\n
    1001<\/td>\nDhanya Sales<\/td>\nManager : 25000<\/td>\n<\/tr>\n
    1003<\/td>\nShajan Sales<\/td>\nClerk : 113000<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

    b)<\/p>\n\n\n\n\n
    Emp_Code<\/td>\nName<\/td>\nDepartment<\/td>\nDesignation<\/td>\nSalary<\/td>\n<\/tr>\n
    1001<\/td>\nDhanya<\/td>\nSales<\/td>\nManager<\/td>\n25000<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

    c)<\/p>\n\n\n\n\n\n\n
    Emp Code<\/td>\nName<\/td>\nDepartment<\/td>\nDesignation<\/td>\nSalary<\/td>\n<\/tr>\n
    1000<\/td>\nSudheesh<\/td>\nPurchase<\/td>\nManager<\/td>\n25000<\/td>\n<\/tr>\n
    1001<\/td>\nDhanya<\/td>\nSales<\/td>\nManager<\/td>\n25000<\/td>\n<\/tr>\n
    1003<\/td>\nShajan<\/td>\nSales<\/td>\nClerk<\/td>\n13000<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

    d)<\/p>\n\n\n\n\n\n\n\n
    Name<\/td>\nSalary<\/td>\n<\/tr>\n
    Sudheesh<\/td>\n25000<\/td>\n<\/tr>\n
    Dhanya<\/td>\n25000<\/td>\n<\/tr>\n
    Fathima<\/td>\n12000<\/td>\n<\/tr>\n
    Shajan<\/td>\n13000<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

    e)<\/p>\n\n\n\n\n\n
    Name<\/td>\nSalary<\/td>\n<\/tr>\n
    Sudheesh<\/td>\n25000<\/td>\n<\/tr>\n
    Dhanya<\/td>\n25000<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

    f) No rows selected<\/p>\n

    Question 33.
    \nConsider the instance of the BORROWER and DE- POSlTOR relations shown in following figure which stores the details of customers in a Bank. Answer the following queries in relational algebra. (5 Mark)
    \na) Display the details of the customers who are either a depositor or a borrower.
    \nb) Display the name of customers who are both a depositor and a borrower.
    \nc) Display the details of the customers who are d positors but not borrowers.
    \nd) Display the name and’amount of customer who is a borrower but not depositor.<\/p>\n\n\n\n\n\n\n\n\n
    Borrower<\/td>\nDepositor<\/td>\n<\/tr>\n
    Acc_No<\/td>\nName<\/td>\nAmount<\/td>\nAcc_No<\/td>\nName<\/td>\nAmount<\/td>\n<\/tr>\n
    AC123<\/td>\njuwee<\/td>\n50000<\/td>\nAC123<\/td>\njuwee<\/td>\n500<\/td>\n<\/tr>\n
    AC103<\/td>\nRasheeda<\/td>\n25000.<\/td>\nAC105<\/td>\nShabana<\/td>\n25000<\/td>\n<\/tr>\n
    AC106<\/td>\nVishnu<\/td>\n25000<\/td>\nAC116<\/td>\nVishnu<\/td>\n125000<\/td>\n<\/tr>\n
    AC108<\/td>\nAiswarya<\/td>\n30000<\/td>\nAC108<\/td>\nAiswarya<\/td>\n3000<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

    Answer:
    \na)<\/p>\n\n\n\n\n\n\n\n\n\n
    Acc_No<\/td>\nName<\/td>\n<\/tr>\n
    AC 123<\/td>\nAlbin<\/td>\n<\/tr>\n
    AC 105<\/td>\nShabana<\/td>\n<\/tr>\n
    AC116<\/td>\nVishnu<\/td>\n<\/tr>\n
    AC108<\/td>\nAiswarya<\/td>\n<\/tr>\n
    AC103<\/td>\nRasheeda<\/td>\n<\/tr>\n
    AC 106<\/td>\nVishnu<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

    b)<\/p>\n\n\n\n\n\n
    Acc_No<\/td>\nName<\/td>\n<\/tr>\n
    AC123<\/td>\nAlbin<\/td>\n<\/tr>\n
    AC108<\/td>\nAiswarya<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

    c)<\/p>\n\n\n\n\n\n
    Acc_No<\/td>\nName<\/td>\n<\/tr>\n
    AC105<\/td>\nShabana<\/td>\n<\/tr>\n
    AC116<\/td>\nVishnu<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

    d)<\/p>\n\n\n\n\n\n
    Name<\/td>\nAmount<\/td>\n<\/tr>\n
    Rasheeda<\/td>\n25000<\/td>\n<\/tr>\n
    Vishnu<\/td>\n25000<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

    Question 34.
    \nConsider the instance of the CUSTOMER and BRANCH relations shown in the following table. Write the Cartesian Product of the two relations. (3 Mark)<\/p>\n\n\n\n\n\n\n\n
    CUSTOMER<\/td>\n<\/tr>\n
    Acc_No<\/td>\nName<\/td>\nBranchJD<\/td>\nAmount<\/td>\n<\/tr>\n
    AC123<\/td>\nAlbin<\/td>\nB1001<\/td>\n50000<\/td>\n<\/tr>\n
    AC103<\/td>\nRasheeda<\/td>\nB1001<\/td>\n25000<\/td>\n<\/tr>\n
    AC106<\/td>\nVishnu<\/td>\nB1001<\/td>\n25000<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n\n\n\n\n\n\n\n
    BRANCH<\/td>\n<\/tr>\n
    BranchJD<\/td>\nName<\/td>\n<\/tr>\n
    B1001<\/td>\nKochi<\/td>\n<\/tr>\n
    B1002<\/td>\nGuruvayur<\/td>\n<\/tr>\n
    B10TT<\/td>\nIduki<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

    Answer:<\/p>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    CUSTOMER X BRANCH<\/td>\n<\/tr>\n
    Acc No<\/td>\nName<\/td>\nBranch ID<\/td>\nAmount<\/td>\nBranch ID<\/td>\nName<\/td>\n<\/tr>\n
    AC123<\/td>\nAlbin<\/td>\nB1001<\/td>\n50000<\/td>\nB1001<\/td>\nKochi<\/td>\n<\/tr>\n
    AC 123<\/td>\nAlbin<\/td>\nB1001<\/td>\n50000<\/td>\nB1002<\/td>\nGuruvayur<\/td>\n<\/tr>\n
    AC123<\/td>\nAlbin<\/td>\nB1001<\/td>\n50000<\/td>\nB1077<\/td>\nIdukki<\/td>\n<\/tr>\n
    AC103<\/td>\nRasheeda<\/td>\nB1001<\/td>\n25000<\/td>\nB1001<\/td>\nKochi<\/td>\n<\/tr>\n
    AC103<\/td>\nRasheeda<\/td>\nB1001<\/td>\n25000<\/td>\nB1002<\/td>\nGuruvayur<\/td>\n<\/tr>\n
    AC 103<\/td>\nRasheeda<\/td>\nB1001<\/td>\n25000<\/td>\nB1077<\/td>\nIdukki<\/td>\n<\/tr>\n
    AC 106<\/td>\nVishnu<\/td>\nB1001<\/td>\n25000<\/td>\nB1001<\/td>\nKochi<\/td>\n<\/tr>\n
    AC106<\/td>\nVishnu<\/td>\nB1001<\/td>\n25000<\/td>\nB1002<\/td>\nGuruvayur<\/td>\n<\/tr>\n
    AC106<\/td>\nVishnu<\/td>\nB1001<\/td>\n25000<\/td>\nB1077<\/td>\nIdukki<\/td>\n<\/tr>\n
    AC 108<\/td>\nAiswarya<\/td>\nB1077<\/td>\n30000<\/td>\nB1001<\/td>\nKochi<\/td>\n<\/tr>\n
    AC108<\/td>\nAiswarya<\/td>\nB1077<\/td>\n30000<\/td>\nB1002<\/td>\nGuruvayur<\/td>\n<\/tr>\n
    AC108<\/td>\nAiswarya<\/td>\nB1077<\/td>\n30000<\/td>\nB1077<\/td>\nIdukki<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n

    Plus Two Computer Science Chapter Wise Previous Questions<\/a><\/h4>\n","protected":false},"excerpt":{"rendered":"

    Kerala Plus Two Computer Science Chapter Wise Previous Questions and Answers Chapter 8 Database Management System Question 1. Components of DBMS [MARCH – 2008] (3) Answer: a) databases – database is an organized collection of information. b) Data Definition Language(DDL) – Data Definition Language is used to specify the definitions of Da-tabase Schema. The result […]<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[42728],"tags":[],"yoast_head":"\nPlus Two Computer Science Chapter Wise Previous Questions Chapter 8 Database Management System - A Plus Topper<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Plus Two Computer Science Chapter Wise Previous Questions Chapter 8 Database Management System\" \/>\n<meta property=\"og:description\" content=\"Kerala Plus Two Computer Science Chapter Wise Previous Questions and Answers Chapter 8 Database Management System Question 1. Components of DBMS [MARCH – 2008] (3) Answer: a) databases – database is an organized collection of information. b) Data Definition Language(DDL) – Data Definition Language is used to specify the definitions of Da-tabase Schema. The result […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/\" \/>\n<meta property=\"og:site_name\" content=\"A Plus Topper\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/aplustopper\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-31T04:30:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-01T03:50:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-8-Database-Management-System-1.png\" \/>\n<meta name=\"twitter:card\" content=\"summary\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prasanna\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"23 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.aplustopper.com\/#organization\",\"name\":\"Aplus Topper\",\"url\":\"https:\/\/www.aplustopper.com\/\",\"sameAs\":[\"https:\/\/www.facebook.com\/aplustopper\/\"],\"logo\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.aplustopper.com\/#logo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg\",\"contentUrl\":\"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg\",\"width\":1585,\"height\":375,\"caption\":\"Aplus Topper\"},\"image\":{\"@id\":\"https:\/\/www.aplustopper.com\/#logo\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.aplustopper.com\/#website\",\"url\":\"https:\/\/www.aplustopper.com\/\",\"name\":\"A Plus Topper\",\"description\":\"Improve your Grades\",\"publisher\":{\"@id\":\"https:\/\/www.aplustopper.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.aplustopper.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-8-Database-Management-System-1.png\",\"contentUrl\":\"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-8-Database-Management-System-1.png\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#webpage\",\"url\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/\",\"name\":\"Plus Two Computer Science Chapter Wise Previous Questions Chapter 8 Database Management System - A Plus Topper\",\"isPartOf\":{\"@id\":\"https:\/\/www.aplustopper.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#primaryimage\"},\"datePublished\":\"2023-01-31T04:30:35+00:00\",\"dateModified\":\"2023-02-01T03:50:04+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.aplustopper.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Plus Two Computer Science Chapter Wise Previous Questions Chapter 8 Database Management System\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#webpage\"},\"author\":{\"@id\":\"https:\/\/www.aplustopper.com\/#\/schema\/person\/2533e4338ba14fc0e4001efcca2f8794\"},\"headline\":\"Plus Two Computer Science Chapter Wise Previous Questions Chapter 8 Database Management System\",\"datePublished\":\"2023-01-31T04:30:35+00:00\",\"dateModified\":\"2023-02-01T03:50:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#webpage\"},\"wordCount\":4655,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.aplustopper.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-8-Database-Management-System-1.png\",\"articleSection\":[\"HSSLiVE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#respond\"]}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.aplustopper.com\/#\/schema\/person\/2533e4338ba14fc0e4001efcca2f8794\",\"name\":\"Prasanna\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.aplustopper.com\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g\",\"caption\":\"Prasanna\"},\"url\":\"https:\/\/www.aplustopper.com\/author\/prasanna\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 8 Database Management System - A Plus Topper","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/","og_locale":"en_US","og_type":"article","og_title":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 8 Database Management System","og_description":"Kerala Plus Two Computer Science Chapter Wise Previous Questions and Answers Chapter 8 Database Management System Question 1. Components of DBMS [MARCH – 2008] (3) Answer: a) databases – database is an organized collection of information. b) Data Definition Language(DDL) – Data Definition Language is used to specify the definitions of Da-tabase Schema. The result […]","og_url":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/","og_site_name":"A Plus Topper","article_publisher":"https:\/\/www.facebook.com\/aplustopper\/","article_published_time":"2023-01-31T04:30:35+00:00","article_modified_time":"2023-02-01T03:50:04+00:00","og_image":[{"url":"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-8-Database-Management-System-1.png"}],"twitter_card":"summary","twitter_misc":{"Written by":"Prasanna","Est. reading time":"23 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/www.aplustopper.com\/#organization","name":"Aplus Topper","url":"https:\/\/www.aplustopper.com\/","sameAs":["https:\/\/www.facebook.com\/aplustopper\/"],"logo":{"@type":"ImageObject","@id":"https:\/\/www.aplustopper.com\/#logo","inLanguage":"en-US","url":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg","contentUrl":"https:\/\/www.aplustopper.com\/wp-content\/uploads\/2018\/12\/Aplus_380x90-logo.jpg","width":1585,"height":375,"caption":"Aplus Topper"},"image":{"@id":"https:\/\/www.aplustopper.com\/#logo"}},{"@type":"WebSite","@id":"https:\/\/www.aplustopper.com\/#website","url":"https:\/\/www.aplustopper.com\/","name":"A Plus Topper","description":"Improve your Grades","publisher":{"@id":"https:\/\/www.aplustopper.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.aplustopper.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#primaryimage","inLanguage":"en-US","url":"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-8-Database-Management-System-1.png","contentUrl":"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-8-Database-Management-System-1.png"},{"@type":"WebPage","@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#webpage","url":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/","name":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 8 Database Management System - A Plus Topper","isPartOf":{"@id":"https:\/\/www.aplustopper.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#primaryimage"},"datePublished":"2023-01-31T04:30:35+00:00","dateModified":"2023-02-01T03:50:04+00:00","breadcrumb":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.aplustopper.com\/"},{"@type":"ListItem","position":2,"name":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 8 Database Management System"}]},{"@type":"Article","@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#article","isPartOf":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#webpage"},"author":{"@id":"https:\/\/www.aplustopper.com\/#\/schema\/person\/2533e4338ba14fc0e4001efcca2f8794"},"headline":"Plus Two Computer Science Chapter Wise Previous Questions Chapter 8 Database Management System","datePublished":"2023-01-31T04:30:35+00:00","dateModified":"2023-02-01T03:50:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#webpage"},"wordCount":4655,"commentCount":0,"publisher":{"@id":"https:\/\/www.aplustopper.com\/#organization"},"image":{"@id":"https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#primaryimage"},"thumbnailUrl":"https:\/\/www.hsslive.guru\/wp-content\/uploads\/2020\/11\/Plus-Two-Computer-Science-Chapter-Wise-Previous-Questions-Chapter-8-Database-Management-System-1.png","articleSection":["HSSLiVE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.aplustopper.com\/plus-two-computer-science-chapter-wise-previous-questions-chapter-8\/#respond"]}]},{"@type":"Person","@id":"https:\/\/www.aplustopper.com\/#\/schema\/person\/2533e4338ba14fc0e4001efcca2f8794","name":"Prasanna","image":{"@type":"ImageObject","@id":"https:\/\/www.aplustopper.com\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/174540ad43736c7d1a4c4f83c775e74d?s=96&d=mm&r=g","caption":"Prasanna"},"url":"https:\/\/www.aplustopper.com\/author\/prasanna\/"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts\/42247"}],"collection":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/comments?post=42247"}],"version-history":[{"count":1,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts\/42247\/revisions"}],"predecessor-version":[{"id":155365,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/posts\/42247\/revisions\/155365"}],"wp:attachment":[{"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/media?parent=42247"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/categories?post=42247"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.aplustopper.com\/wp-json\/wp\/v2\/tags?post=42247"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}