nerdexam
Salesforce

PDI · Question #38

Universal Container is building a recruiting app with an Applicant object that stores information about an individual person that represents a job. Each application may apply for more than one job…

The correct answer is C. Junction object between Applicant and Job. To represent a many-to-many relationship where one applicant can apply for multiple jobs and one job can have multiple applicants, a junction object should be implemented.

Submitted by tunde_lagos· Apr 18, 2026Data Modeling and Management

Question

Universal Container is building a recruiting app with an Applicant object that stores information about an individual person that represents a job. Each application may apply for more than one job. What should a developer implement to represent that an applicant has applied for a job?

Options

  • AMaster-detail field from Applicant to Job
  • BFormula field on Applicant that references Job
  • CJunction object between Applicant and Job
  • DLookup field from Applicant to Job

How the community answered

(26 responses)
  • A
    4% (1)
  • B
    15% (4)
  • C
    77% (20)
  • D
    4% (1)

Why each option

To represent a many-to-many relationship where one applicant can apply for multiple jobs and one job can have multiple applicants, a junction object should be implemented.

AMaster-detail field from Applicant to Job

A master-detail field would imply a one-to-many relationship, which contradicts the requirement for both 'many jobs' and 'many applicants'.

BFormula field on Applicant that references Job

A formula field is used for calculating or displaying data, not for establishing record-to-record relationships.

CJunction object between Applicant and JobCorrect

A junction object is necessary to represent a many-to-many relationship between Applicant and Job, allowing each applicant to relate to multiple jobs and each job to relate to multiple applicants.

DLookup field from Applicant to Job

A lookup field creates a one-to-many relationship, allowing an Applicant to be linked to only one Job, or a Job to have many Applicants, but not both in a many-to-many context.

Concept tested: Many-to-many relationships and junction objects

Source: https://help.salesforce.com/s/articleView?id=sf.custom_field_junc_object.htm&type=5

Topics

#Data Modeling#Object Relationships#Many-to-Many Relationship#Junction Object

Community Discussion

No community discussion yet for this question.

Full PDI Practice