Pearson eText for Modern Database Management -- Instant Access (Pearson+)
Pearson eText for Modern Database Management -- Instant Access (Pearson+)
13th Edition
ISBN: 9780137305940
Author: Jeffrey Hoffer, Ramesh Venkataraman
Publisher: PEARSON+
bartleby

Concept explainers

bartleby

Videos

Textbook Question
Book Icon
Chapter 2, Problem 2.1RQ

Define each of the following terms:

  1. entity type
  2. entity-relationship model
  3. entity instance
  4. Attribute
  5. relationship type
  6. strong entity type
  7. multivalued attribute
  8. associative entity
  9. cardinality constraint
  10. weak entity
  11. binary relationship
  12. derived attribute
  13. business rule

Expert Solution
Check Mark
Program Plan Intro

(a)

Definition of Entity type.

Explanation of Solution

Entity type can be defined as a set of entities which share some common characteristics, behavior and attributes.

Expert Solution
Check Mark
Program Plan Intro

(b)

Definition of Entity-relational model.

Explanation of Solution

Entity-relational model represents the logical relationship between the entities and attributes in the database for an organization. it helps in creating database easily and can be understood by all. E-R model can be expressed as entity-relationship diagram also called as (ERD diagram).

Expert Solution
Check Mark
Program Plan Intro

(c)

Definition of entity instance.

Explanation of Solution

Entity instance is single occurrence of entity type. Consider an example, suppose employee is an entity type which has many instances. Example of instances can be John, Jenny or any other employee.

Expert Solution
Check Mark
Program Plan Intro

(d)

Definition of attribute.

Explanation of Solution

Every entity instance or set has its own attributes. Attributes state the behavior and characteristics of the entity. consider an example of employee here employee is the entity set that consists of various attributes such as name, address, location, employee id, mobile number etc., which states the characteristics of the entity instance or set.

Expert Solution
Check Mark
Program Plan Intro

(e)

Definition of relationship type.

Explanation of Solution

Relationship type is the meaningful representation of data between the entity set. It is of four types:

i) one to one relationship: in this type of relationship, one record of the table is associated with one record of another table.

ii) one to many relationships: In this type of relationship, one record of first table can be associated with N numbers of records of the other table.

iii) many to one relationship: In this type of relationship, many or N number of records of the first table can be associated with one record of the other table.

iv) many to many relationshipsIn this type of relationship N number of records of first table can be associated with N numbers of records of the other table.

Expert Solution
Check Mark
Program Plan Intro

(f)

Definition of Strong entity type.

Explanation of Solution

Strong entity type: Strong entity is an entity which is not dependent on any other entity. For example, tire can be considered as an example of the strong entity as its existence does not depend on any vehicle entity set.

Expert Solution
Check Mark
Program Plan Intro

(g)

Definition of multi-valued attribute.

Explanation of Solution

Multivalued attributes are those which takes some values from the entity instance. For example, in the employee entity set address is a multi-value attribute it can hold the permanent and temporary address of the employee.

Expert Solution
Check Mark
Program Plan Intro

(h)

Definition of associative entity.

Explanation of Solution

Associative entity provides association between the given entity set or instance. An entity is associative only if it has all the entity set or instance involved in the many relationships. The result associative entity should be independent.

Expert Solution
Check Mark
Program Plan Intro

(i)

Definition of cardinality constraints.

Explanation of Solution

Cardinality constraints specify the number of elements associated with each other between the two tables. It can be of two types; minimum cardinality and maximum cardinality.

Expert Solution
Check Mark
Program Plan Intro

(j)

Definition of weak entity.

Explanation of Solution

Weak entity depends on another entity for its existence. And it has no importance or existence if the dependent entity does not exist. Example of weak entity can be room, as it depends on building and can exist only if there is any building.

Expert Solution
Check Mark
Program Plan Intro

(k)

Definition of Binary relationship.

Explanation of Solution

Binary relationship is used between the instances of two types and are among the most common types of relationship encountered. It supports three types of cardinalities:

i) one to one: consider an example of employee, each employee has its own parking area. Or we can say that the parking area is assigned to the employee.

ii) one to many: it indicates that one product is connected to others through a common product line.

iii) many to many: many students can do many courses and vice versa.

Expert Solution
Check Mark
Program Plan Intro

(l)

Definition of Derived attribute.

Explanation of Solution

Derived attribute can be calculated by using the related attributes. Suppose we must find the tenure of an employee, to find age, we need the date of birth and the date of joining of the employee. Thus, tenure of an employee is a derived attribute.

Expert Solution
Check Mark
Program Plan Intro

(m)

Definition of business rule.

Explanation of Solution

Business rules are used to provide direction to business and help to lead the progress of the business project. Some business rules are important as they provide logical schema. Database designers need to follow the business rules during the development of the database as per the directions provided by the honor of code. These rules are also used for maintaining the integrity and accuracy of data.

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
A cylinder of diameter 10 cm rotates concentrically inside another hollow cylinder of inner diameter 10.1 cm. Both cylinders are 20 cm long and stand with their axis vertical. The annular space is filled with oil. If a torque of 100 kg cm is required to rotate the inner cylinder at 100 rpm, determine the viscosity of oil. Ans. μ= 29.82poise
Make the following game user friendly with GUI, with some simple graphics The following code works as this: The objective of the player is to escape from this labyrinth. The player starts at the bottom left corner of the labyrinth. He has to get to the top right corner of the labyrinth as fast he can, avoiding a meeting with the evil dragon. The player can move only in four directions: left, right, up or down. There are several escape paths in all labyrinths. The player’s character should be able to moved with the well known WASD keyboard buttons. If the dragon gets to a neighboring field of the player, then the player dies. Because it is dark in the labyrinth, the player can see only the neighboring fields at a distance of 3 units.  Cell Class: public class Cell { private boolean isWall; public Cell(boolean isWall) { this.isWall = isWall; } public boolean isWall() { return isWall; } public void setWall(boolean isWall) { this.isWall = isWall; } @Override public String toString() {…
Please original work What are four of the goals of information lifecycle management think they are most important to data warehousing, Why do you feel this way, how dashboards can be used in the process, and provide a real life example for each. Please cite in text references and add weblinks

Chapter 2 Solutions

Pearson eText for Modern Database Management -- Instant Access (Pearson+)

Ch. 2 - List the four types of cardinality constraints,...Ch. 2 - Give an example, Other than those described in...Ch. 2 - What is the degree of a relationship? List the...Ch. 2 - Give an example (Other than those described in...Ch. 2 - Give an example of each of the following, other...Ch. 2 - Give an example of the use of effective (or...Ch. 2 - State a rule that says when to extract an...Ch. 2 - Prob. 2.18RQCh. 2 - In addition to explaining what action is being...Ch. 2 - For the Manages relationship in Figure 2-12a,...Ch. 2 - Explain the distinction between entity type and...Ch. 2 - Why is it recommended that every ternary...Ch. 2 - A cellular operator needs a database to keep track...Ch. 2 - Prob. 2.24PAECh. 2 - Answer the following questions concerning Figure...Ch. 2 - Prob. 2.26PAECh. 2 - You may have been assigned a CASE or a drawing...Ch. 2 - Consider the two E-R diagrams in Figure 2-25 Q,...Ch. 2 - Prob. 2.29PAECh. 2 - Are associative entities also weak entities? Why...Ch. 2 - Because Visio does not explicitly show associative...Ch. 2 - Figure 2-26 shows a grade report that is mailed to...Ch. 2 - Prob. 2.33PAECh. 2 - The Is Married To relationship in Figure 2-12a...Ch. 2 - Figure 2-27 represents a situation of students who...Ch. 2 - Figure 2-28 shows two diagrams (A and B), both of...Ch. 2 - Prob. 2.37PAECh. 2 - Review Figure 2-8LQ and Figure 2-22. Identify any...Ch. 2 - Prob. 2.39PAECh. 2 - Prob. 2.40PAECh. 2 - Prob. 2.41PAECh. 2 - Prob. 2.42PAECh. 2 - Prob. 2.43PAECh. 2 - Prob. 2.44PAECh. 2 - Prob. 2.45PAECh. 2 - Prob. 2.46PAECh. 2 - Prob. 2.47PAECh. 2 - Prob. 2.48PAECh. 2 - Draw an ERD for the following situation. (State...Ch. 2 - Prob. 2.50PAECh. 2 - Prob. 2.51PAECh. 2 - Review your answer to Problem and Exercise 2-49 if...
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781305627482
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Oracle 12c: SQL
Computer Science
ISBN:9781305251038
Author:Joan Casteel
Publisher:Cengage Learning
Enhanced Entity Relationship Model; Author: Data Science Center;https://www.youtube.com/watch?v=ocQUtXPumdQ;License: Standard YouTube License, CC-BY