Which change in the Apex code will fix the problem?
An Apex trigger and Apex class increment a counter, Edit_Count_c, any time that the Case is changed. A new process on the case object was just created in production for when a Case is created or updated< since the process was created, they are reports that the Count is being...
Which option is the preferred optimized method to achieve this for the Account named ‘Ozene Electronics’?
A developer has requirement to query three fields (id, name, Type) from an Account and first and last names for all Contacts associated with the Account. Which option is the preferred optimized method to achieve this for the Account named ‘Ozene Electronics’?A . Account a = (SELECT ID, Name, Type...
Which SOQL query wrii return a unique list of all the Contact records that have no Fulfilled Orders?
A company has a custom object. Order__c, that has a custom picklist field. Status__c, with values of New, In Progress," or Fulfilled and a lookup field, Contact_c, to Contact. Which SOQL query wrii return a unique list of all the Contact records that have no Fulfilled Orders?A . SELECT Contact_c...
Which of the following standard fields are indexed? (Choose three.)
Which of the following standard fields are indexed? (Choose three.)A . NameB . CreatedByC . SystemModStampD . LastModifedDdateE . RecordTypeView AnswerAnswer: A,B,C
How many Territories can an instance of salesforce have?
How many Territories can an instance of salesforce have?A . 400B . 200C . 1000D . 100E . 500View AnswerAnswer: E
What is the optimal way to automate this?
A company has a custom object, Sales Demo Request, that has a lookup to an Opportunity. It is required that a Sales Demo Request record be created when an Opportunity's Probability is greater than 50%. What is the optimal way to automate this?A . Build a Flow on Opportunity.B ....
What is the optimal way to implement this?
A company represents their customers as Accounts that have an External ID field called Customer_Number__c. They have a custom Order (Order__c) object, with a Lookup to Account, to represent Orders that are placed in their external order management system (OMS). When an order is fulfilled in the OMS, a REST...
How can this be achieved?
A company needs to automatically delete sensitive information after 7 years. This could delete almost a million records every day. How can this be achieved?A . Schedule an ©future process to Query records older than 7 years, and then recursively invoke itself in 1,000 record batches to delete them.B ....
Which method of integration is optimal?
A company has a web page that needs to get Account record information, given its Salesforce record ID, from JavaScript on the page and then display it. Which method of integration is optimal?A . SOAP APIB . Apex REST Web ServiceC . Apex SOAP Web ServiceD . REST APIView AnswerAnswer:...
When following best practices for writing Apex taggers, which two lots are wrong or cause for concern?
Refer to re code segment above. When following best practices for writing Apex taggers, which two lots are wrong or cause for concern? Choose 2 answersA . Line 6B . Line 11C . Line 16D . Line 20View AnswerAnswer: A,D