Open In App

UGC-NET | UGC NET CS 2015 Jun – II | Question 19

Like Article
Like
Save
Share
Report

Database applications were built directly on top of file system to overcome the following drawbacks of using file-systems:

(i) Data redundancy and inconsistency
(ii) Difficulty in accessing Data
(iii) Data isolation
(iv) Integrity problems

(A) (i)
(B) (i) and (iv)
(C) (i), (ii) and (iii)
(D) (i), (ii), (iii) and (iv)


Answer: (D)

Explanation: Database applications were built directly on top of file system to overcome the following drawbacks of using file-systems:

  • Data redundancy and inconsistency Redundancy is the concept of repetition of data i.e. each data may have more than a single copy. We can overcome over it with the help of Normalisation
  • Difficulty in accessing Data can be overcome by different type of queries i.e. procedural and non procedural queries.
  • Data isolation can be removed by join etc.
  • Integrity problems Integrity Constraints are the compulsory conditions which should be satisfied by every data value present in the relational table at any instance of time to ensure that the database consists of only meaningful and relevant data. There are four types of integrity constraints:
    • Domain Constraints : Every attribute should have values within its defined domain.
    • Key Constraints : There should be a primary key for every relational table.
    • Entity Integrity Constraints : No NULL values should be there for the Primary Keys.
    • Referential Integrity Constraints : In relational model, when two tables are related to each other with the help of some common attributes, the value of referencing attribute should be present in the referenced attribute else it should be NULL.

    So, option (D) is correct.

    Quiz of this Question


    Last Updated : 15 Oct, 2019
    Like Article
    Save Article
    Previous
    Next
    Share your thoughts in the comments
Similar Reads