A method is passed a list of generic sObjects as a parameter. What should the developer do to determine which object type (Account, Lead, or Contact, for example) to cast each sObject?
- Use the first three characters of the sObject ID to determine the sObject type.
- Use the getSObjectType method on each generic sObject to retrieve the sObject token.
- Use the getSObjectName method on the sObject class to get the sObject name.
- Use a try-catch construct to cast the sObject into one of the three sObject types.
Reveal Solution Next Question