In an Entity-Relationship (ER) model, which statement correctly describes the difference between an entity and an attribute?
Think about what you want to represent as a thing versus what describes that thing.
Entities are objects or concepts like 'Student' or 'Car'. Attributes are details about entities, like 'Name' or 'Color'.
What does the cardinality 'one-to-many' mean in an ER model?
Consider the direction of 'one' and 'many' in the relationship.
One-to-many means one entity on the left relates to many on the right, but each on the right relates to only one on the left.
Given an ER diagram where an entity 'OrderItem' depends on 'Order' for its identification, which characteristic best identifies 'OrderItem' as a weak entity?
Think about what makes an entity weak in terms of identification.
A weak entity depends on another entity for its key; it has a partial key that needs the owner's key to be unique.
Which option correctly distinguishes between generalization and specialization in the ER model?
Think about whether you are grouping or splitting entities.
Generalization groups entities into a broader category; specialization breaks an entity into more specific types.
Consider an ER model with entities 'Student', 'Course', and 'Instructor'. Each student can enroll in many courses, and each course can have many students. Each course is taught by exactly one instructor, but an instructor can teach many courses. How many total relationships are there in this model?
Count only direct relationships between entities described.
There are two direct relationships: students enroll in courses, and courses are taught by instructors. No direct relationship between students and instructors is described.