Which of the following is not a database software
1 point
dBASE
FoxPro
SQLite
IBM DB2
DB1
How many types are there in database management system?
1 point
flat file management system is more reliable than DBMS
1 point
True
False
database administrator is responsible for designing application program to interact with database
1 point
True
False
Which of the following is the example of one to many relationship
1 point
One class may have many teachers
One teacher can have many classes
Many classes may have many teachers
Many teachers may have many classes
Which one is true about DBMS
1 point
It is a type of system software
It is a kind of application software
It is a kind of general software
Both A and C
same data (or information) occupying the memory space at multiple places is called
1 point
Data Repository
Data Inconsistency
Data Mining
Data Redundancy
Which of the below can be a primary key
1 point
Name
Street
Id
Department
Which of the following refers to the level of data abstraction that describes exactly how the data
actually stored?
1 point
Conceptual Level
Physical Level
File Level
Logical Level
Rows of a relation are known as the _______.
1 point
Degree
Tuples
Entity
All of the above
Which of the following refers to the number of tuples in a relation?
1 point
Entity
Column
Cardinality
None of the above
In the relational table, which of the following can also be represented by the term "attribute"?
1 point
Entity
Row
Column
Both B &C
Which of the following refers to the number of attributes in a relation?
1 point
Degree
Row
Column
All of the above
Which one of the following refers to the total view of the database content?
1 point
Conceptual view
Physical view
Internal view
External view
Explain attribute and entity.
2 points
Attribute: Attributes are properties that describe an entity. Let’s look at the example of a university
management system again. The student entity has attributes such as student id, name, age, address,
GPA. The course entity has attributes such as course id, course name, duration.
Entity: An entity is an object in RDBMS that is used to model and store information while an attribute is
a characteristic to define an entity.
Explain Referential integrity constraints
2 points
A referential integrity constraint is defined as part of an association between two entity types. The
definition for a referential integrity constraint specifies the following information: The principal end of
the constraint.
What is ER diagram? Why we use ER diagram.
2 points
An Entity Relationship Diagram shows how entities relate to each other in a particular system. Generally,
an ERD does not define business processes, but graphically displays business data patterns.
ER diagrams are used to analyze existing databases to find and resolve problems in logic or deployment.
Drawing the diagram should reveal where it's going wrong. Business information systems: The diagrams
are used to design or analyze relational databases used in business processes.
Define Normalization. Write down the conditions of 2nd normal form
2 points
Normalization is a database design technique that reduces data redundancy and eliminates undesirable
characteristics like Insertion, Update and Deletion Anomalies.
Second Normal Form (2NF) is based on the concept of full functional dependency. Second Normal Form
applies to relations with composite keys, that is, relations with a primary key composed of two or more
attributes. To be in second normal form, a relation must be in first normal form and relation must not
contain any partial dependency.