Question 61: Let's say we want to implement the following schema:

Enity: Staff Member (id , name)

Enity: Permanent (specialises Staff Member) (next_appraisal_date )

Enity: Temporary (specialises Staff Member) (contract_end_date)

A Staff Member is either a Permanent employee or a Temporary contractor. How do you define disjoint in parent child relationship?

  1. An entity can only participate in only one subtype role
  2. Get all Questions and Answer from here
  3. You need to have paid subscription to access all questions
  4. Thanks for considering Python Certification Material

Correct Answer : 1

Exp : It means Temporary employee cannot be part of permanent employee. 

You can access to full explanation to question and answer from this page.