Final answer:
In a master-detail relationship like that between Job Applications and Reviews, deleting the master record (Job Application) will also delete all associated detail records (Reviews). Reviews cannot exist independently and inherit ownership from the Job Application.
Step-by-step explanation:
In a recruiting application, when a master-detail relationship is established between two custom objects, there are certain characteristics that define their interaction. In the context of Job Applications as the master and Reviews as the detail:
- Deleting a job application record will delete associated review records. This is because in a master-detail relationship, the detail (child) records are tightly coupled with the master (parent) record.
- The master-detail relationship is defined on the detail object, which in this case would be the Reviews object, not the Job application Object.
- Review records will inherit ownership from the associated job application. Detail records in a master-detail relationship do not have their own ownership; they inherit it from the master record.
- Review records cannot exist without an associated job application. In a master-detail relationship, the existence of detail records is contingent on their associated master record.
Therefore, the true statement among the options given is that deleting a job application record will delete associated review records.