Correct Answer: D
Dataverse defines the two types of relationships between tables: One-to-Many (1:N) and Many-to-Many (N:N).
A One-to-Many relationship is a Parent-Child relationship, like between a customer and multiple orders. One customer can have several equipment orders. The customer record in a Customers table will be related to the numerous records in the Orders table. It is a One-to-Many relationship for a customer record. For the related order record, this relation is Many-to-One (N:1).
A Many-to-Many relationship is when multiple records from one table related to the multiple records in another table and vice versa. An example of this type is a relationship between suppliers and your company`s employees that process the orders: each employee can process the equipment from multiple suppliers. Each supplier has multiple people who process their equipment. The person record in an Employees table will be related to the multiple records in the Suppliers table. And a supplier record in the Suppliers table will be related to the multiple records in an Employee table. It is a Many-to-Many relationship for a person and a supplier records.
When users create a Many-to-Many relationship, the Dataverse creates a specific hidden intersect matching table between the two tables` records. After you create an N:N relationship, you cannot edit both tables. You can avoid this limitation by creating a new custom table and establish two One-to-Many relationships between a new table and each of the other tables. By introducing the third table, you will avoid the limitation mentioned above.
Another possible solution is connections. Connections are a particular case for the Many-to-Many relationships. They are flexible and don`t have the limitations of the N:N relationship.
All other options are incorrect.
For more information about the Dataverse types of table relationship, please visit the below URLs:
https://docs.microsoft.com/en-us/powerapps/guidance/planning/data-modeling
https://docs.microsoft.com/en-us/powerapps/maker/data-platform/data-platform-entity-lookup
https://docs.microsoft.com/en-us/powerapps/maker/data-platform/create-edit-entity-relationships