Computer Science, asked by Arjita2181, 1 year ago

A recruiting user needs to setup an object relationship between the positionobject and the job application object. he needs this setup so that a positionrecord can be related to many job application records and job application recordscan be related to many position records. he also needs this in a setup wheredeleting a position record will delete all related job application records anddeleting a job application record deletes all related position records. what can asystem administrator do to fulfill the requirement?

Answers

Answered by CBSEMP
12
ur question so long but answer below


A Recruiting User needs to set up an object relationship between the Position Object and the Job Application Object. He needs this setup so that a Position record can be related to many Job Application records and Job Application Records can be related to many Position Records. He also needs this in a setup where deleting a Position record will delete all related Job Application records and deleting a Job Application record deletes all related Position records.


1. Create a lookup relationship on both objects.
2. Create two master-detail relationships where both can be master and both can be detail records
3. Create a junction object between the Job Application and Position object.
4. Create a custom object looking up to a junction object

Answered by sumanrudra22843
0

Explanation:

Pointer arithmetic in C programming

Pointer arithmetic in C programmingC language provides a set of operators to perform arithmetic and comparison of memory addresses. ...

Pointer arithmetic in C programmingC language provides a set of operators to perform arithmetic and comparison of memory addresses. ...Or in simple terms, incrementing a pointer will cause the pointer to point to a memory location skipping N bytes from current pointed memory location. ...

Pointer arithmetic in C programmingC language provides a set of operators to perform arithmetic and comparison of memory addresses. ...Or in simple terms, incrementing a pointer will cause the pointer to point to a memory location skipping N bytes from current pointed memory location. ...Pointer increment operation increments pointer by one.

Similar questions