Platform Dev 1

Pataasin ang iyong marka sa homework at exams ngayon gamit ang Quizwiz!

A

A developer executes following code in Console. What will happen? list<Account> flist = new list<Account>(); for(integer i=1;i<=200 ;i++){ flist.add(new Account(name='Test Acc'+i)); } insert flist; list<Account> Llist = new list<Account>(); for(integer i=201;i<=20000 ;i++){ Llist.add(new Account(name='Test Acc'+i)); } insert Llist ; A. Error will occur B. Insert all records C. Insert 200 only D. Records inserted

A

A developer has completed work in the sandbox and is ready to send it to a related org, what deployment tool should be used? A. Change Sets B. Force.com IDE C. Unmanaged Packages D. Force.com Migration Tool

D

A developer has following query Contact c = [SELECT Id, FirstName, LastName, Email FROM Contact WHERE LastName = 'Smith']; What does the query return if there is no Contact with the last name "Smith"? A. A Contact with empty values. B. A Contact initialized to null. C. An empty List of Contacts. An error that no rows are found.

C

A developer has the following trigger that fires after insert and creates a child Case whenever a new Case is created. List<Case> childCases = new List<Case>(); for (Case parent : Trigger.new){ Case child = new Case(ParentId = parent.Id, Subject = parent.Subject); childCases.add(child); } insert childCases; What happens after the code block executes? A. Multiple child cases are created for each parent case in Trigger.new. B. child case is created for each parent case in Trigger.new. C. The trigger enters an infinite loop and eventually fails. D. The trigger fails if the Subject field on the parent is blank.

B

A developer in a Salesforce org with 100 Accounts executes the following code using the Developer console: Account myAccount = new Account(Name = 'MyAccount'); Insert myAccount; For (Integer x = 0; x < 250; x++) Account newAccount = new Account (Name='MyAccount' + x); try { Insert newAccount; } catch (Exception ex) { System.debug (ex) ; } insert new Account (Name='myAccount'); How many accounts are in the org after this code is run? A. 101 B. 100 C. 102 D. 252

C

A developer needs to create records for the object Property__c .The developer creates the following code block: 01 List<Property__c> propertiesToCreate=helperClass.CreateProperties(); 02 try { 03 04 } catch (Exception exp) { 05 //Exception handling 06 } Which line of code would the developer insert at line 03 to ensure that at least some records are created, even if a record have errors and fails to be created? A. Database.insert(propertiesToCreate, System.ALLOW_PARTIAL); B. insert propertiesToCreate, C. Database.insert(propertiesToCreate, false); D. Database.insert(propertiesToCreate)

D

A developer needs to ensure there is sufficient test coverage for an Apex Method that interacts with Accounts. The developer needs to create test data. What is the preferred way to load this test data into Salesforce? A. By using Documents. B. By using HttpCalloutMocks. C. By using WebServiceTests. D. By using Static Resources.

A, C

A developer needs to know if all tests currently pass in salesforce environment Which feature can the developer use? Choose 2 answers A. Developer Console. B. ANT Migration Tool C. Salesforce UI Apex Test Execution D. Workbench Metadata Retrieval

C

A developer writes a SOQL query to find child records for a specific parent How many specific levels can be returned in a single query? A.3 B.5 C.1 D.7

B

A salesperson at AW Computing only see's the Social Contact's link for Twitter and not Facebook on his records. Why would this be happening? A. Facebook is no longer supported by Social Contacts B. The administrator hasn't enabled Social Contacts for Facebook C. The salesperson's login with Facebook has expired D. None of his Facebook contacts have confirmed the nature of their relationship

B

Actions on a Lightning Page allow you to do which of the following? A. Send email and delete or clone records. B. Send email, create a task, and create or update records. C. Clone records, add users, and assign permissions. D. Send email, send outbound messages, and launch a flow.

C, E

What features are available when writing apex test classes? (Choose 2 Answers) A. The ability to select error types to ignore in the developer console. B. The ability to write assertions to test after a @future method. C. The ability to set and modify the CreatedDate field in apex tests. D. The ability to set breakpoints to freeze the execution at a given point. The ability to select testing data using csv files stored in the system.

B, C, D

What happens when a workflow is re-evaluated? Pick 3 A. Validation B. Cross-object sharing rules C. Other Workflow types D. Previous Workflows

B

What is a capability of the Developer Console? A. Execute Anonymous Apex code, Run REST API, create/Edit code. B. Execute Anonymous Apex code, Create/Edit code, view Debug Logs. C. Execute Anonymous Apex code, Create/Edit code, Deploy code changes. D. Execute Anonymous Apex code, Run REST API, deploy code changes.

B, D

What is a capability of the Force.com IDE? Choose 2 answers A. Roll back deployments. B. Run Apex tests. C. Download debug logs. D. Edit metadata components.

A

What is a junction object? A. A custom object with two master-detail relationships. B. A custom object with one lookup relationship and one master-detail relationship. C. A custom object with two lookup relationships. D. A custom object with any number of lookup and master-detail relationships.

C

What is a lightning page? A. A page you can access via a customer community. B. The new name for a Salesforce page layout. C. A custom layout for creating pages in Salesforce1. D. A compact, configurable, and reusable element

A, D

What is a valid source and destination pair that can send or receive change sets? Choose 2 answers: A. Sandbox to production. B. Developer edition to sandbox. C. Developer edition to production. D. Sandbox to sandbox.

A, C

What is a valid statement about Apex classes and interfaces? Choose 2 answers A. Exception classes must end with the word exception. B. A class can have multiple levels of inner classes. C. The default modifier for a class is private. D. The default modifier for an interface is private.

A, B

What is a valid statement about Apex classes and interfaces? Choose 2 answers: A. The default modifier for a class is private. B. Exception classes must end with the word exception. C. A class can have multiple levels of inner classes. D. The default modifier for an interface is private.

A, D

What is a valid way of loading external JavaScript files into a Visualforce page? (Choose 2) A. Using an (apex:includeScript)* tag. \> B. Using an (apex:define)* tag. C. Using a (link)* tag. D. Using a (script)* tag. *For this question, replace ( ) with less/greater than symbols.

B

What is an important consideration when in a multi-tenant environment? A. Polyglot persistance provides support for a global, multilingual user base in multiple orgs on multiple instances B. Governor limits prevent tenants from impacting performance in multiple orgs on the same instance C. Unique domain names takes the place of namespace for code developed for multiple orgs for multiple instances D. Org-wide data security determines whether other tenants can see data in multiple orgs on the same instance

B

What is the benefit of the Lightning Component framework? A. Better integration with Force.com sites. B. More pre-built components to replicate the Salesforce look and feel. C. More centralized control via server-side logic. D. Better performance for custom Salesforce 1 Mobile apps.

A, B

What is the capability of Force.com IDE? Choose 2 answers A. Edit metadata components B. Run Apex tests C. Run debug logs Roll back deployments

C, D, E

What is the capability of formula fields? Choose 3 answers A. Display the previous value for the field using the PRIORVALUE function. B. Return and display a field value from another object using a VLOOKUP function. C. Determine which of three different images to display using IF function. D. Generate the link using the HYPERLINK function using a specific record in a legacy system. E. Determine if a datetime field has passed using the NOW function.

C

What is the correct way to describe how Model-View-Controller (MVC) architecture is implemented on the Salesforce platform? A. Model: Standard and Custom Objects; View: Visualforce Pages; Controller: s-Controls B. Model: Schema Builder; View: List Views; Controller: Setup Console C. Model: Standard and Custom Objects; View: Visualforce Pages; Controller: Apex Code D. Model: Apex Code; View: List Views; Controller: Setup Console

B

What is the easiest way to verify a user before showing them sensitive content? A. Sending the user a SMS message with a passcode. B. Calling the generateVerificationUrl method in apex. C. Sending the user an Email message with a passcode. Calling the Session.forcedLoginUrl method in apex.

B

What is the name of the standard relationship from Account down to Contact? A. Accounts B. Contacts C. Account D. Contact

A, B, E

What is true when a field update is set to re-evaluate the workflow rule? (choose three) A. Only workflow rules on the same object as the initial field update will be re-evaluated and triggered. B. Only workflow rules that didn't fire before will be retriggered. C. Cascade of workflow rule re-evaluation and triggering can happen up to ten times after the initial field update thatstarted it. D. Any workflow rules whose criteria are met as a result of the field update will be ignored. E. In a batch update, workflow is only retriggered on the entities where there is a change.

A, D

What is valid in the where clause of a SOQL query? Choose 2 answers. A. A geolocation field. B. An encrypted field. C. An aggregate function. D. An alias notation.

C, D

What must a developer consider when inserting records using an API-based tool? Choose 2 A. Required fields on page layouts are enforced. B. Universally required field settings are respected. C. Apex triggers are ignored. D. Validation rules are respected.

C, D

What should a developer working in a sandbox use to exercise a new test class before the developer deploys that test class to production? Choose 2 answers A. The REST API and ApexTestRun method B. The Run Tests page in Salesforce Setup C. The Apex Test Execution page in Salesforce Setup D. The Test menu in the Developer Console

A, B, D

What standard Chatter actions (Post, File, Link, Poll, and Thanks) appear on the user profile page, regardless of the actions in the User page layout? (choose three) A. Post B. Poll C. Create D. File E. Email

A, B, E

What tools do you need to use to migrate Metadata to Two Different Production Orgs? (Choose 3) A. Force.Com IDE B. Force.Com Migration Tool C. Change Set D. Data Loader E. Unmanaged Package

A, B, D

When a user creates a record by using an object-specific create action, what feed item for that record appears? (choose three) A. In the Chatter feed of the user who created the record B. In the feed for the record on which the new record was created C. In the user profile feed for all users who can view the record D. As the first entry in the feed for the new record E. In the Chatter feed of the first user who follows the record on which the record was created

A

When creating a record with a Quick Action, what is the easiest way to post a feed item? A. By selecting create case feed on the quick action. B. By adding a trigger on the new record. C. By adding a workflow rule on the new record. D. By selecting create case feed on the new record.

C

When running an Apex test, which type of Apex syntax in tested code is counted in the code coverage calculation? A. A blank line. B. A System.debug() statement. C. A variable assignment. D. A comment.

A, B

When should a system administrator consider using the Salesforce AppExchange? (Choose 2) A. When looking for pre-built custom applications and tools B. When standard Salesforce functionality needs to be extended C. To find answers to Salesforce application questions D. To submit ideas for Salesforce application enhancements

A, C

When would a developer use a custom controller instead of a controller extension? Choose 2 answers: A. When a Visualforce page needs to replace the functionality of a standard controller. B. When a Visualforce page does not reference a single primary object. C. When a Visualforce page should not enforce permissions or field-level security. D. When a Visualforce page needs to add new actions to a standard controller.

B, C, E

Where can custom roll-up summary fields be created using Standard Object relationships? Choose 3 answers A. On Account using Case records. B. On Account using Opportunity records. C. On Opportunity using Opportunity Product records. D. On Quote using Order records. On Campaign using Campaign Member records.

D

Where would a developer build a managed package? A. Developer Sandbox B. Unlimited Edition C. Partial Copy Sandbox D. Developer Edition

B

Which API cannot be used to create the data model? A. Force.com Single Sign-on API B. Force.com Metadata API C. AJAX Tookit for Force.com D. Force.com API

B

Which Apex collection is used to ensure all values are unique? A. An Sobject B. Set C. List D. Enum

D

Which code segment can be used to control when the dowork() method is called? A. for (Trigger.isRunning t: Trigger.new) { dowork(); } B. if(Trigger.isRunning)dowork(); C. for (Trigger.isInsert t: Trigger.new){ dowork(); } D. if(Trigger.isInsert) dowork();

A, B, D

Which components can be added to a lightning app on custom Object? Choose 3 A. Standard Lightning component B. Custom lightning component C. Object specific actions on the custom object D. Global actions E. Visualforce

B

Which deployment tools will you use to deploy metadata from one organization to another organization? A. Change sets B. Force.com IDE C. Unmanaged Packages

A, B

Which developer tool can be used to create a data model? (Choose 2) A. Force.com IDE B. Schema Builder C. Application Data Model Wizard D. Force.com Data Loader

B

Which is true about social accounts? A. You can use social accounts data even when you are not logged into the social account. B. You need a personal social account in order to see social account data C. You can use social accounts to import data into Salesforce D. Connection to social account is established through a company-wide "named principal"

B, D

Which method is defined in the StandardController class? Choose 2 answers A. Merge B. Save C. Undelete D. Cancel

E

Which of the following fields are not available for record types? A. Opportunity Stages B. Case Status C. Solution Status D. Lead Status E. All of the above

C

Which permission is required to install and uninstall packages from Salesforce AppExchange? A. Manage Package Licenses B. Upload AppExchange Packages C. Download AppExchange Packages D. Create AppExchange Packages

A

Which portion of the Model-View-Controller paradigm is represented in Force.com as a standard or custom object? A. Model B. Controller C. View

D

Which social networks are available in the Lightning Experience and Salesforce1? A. Klout B. Facebook C. LinkedIn D. Twitter

B

Which statement about declarations is correct? A. A developer can extend a class that is declared with Virtual keyword B. A developer can use define constant with final keyword. C. A developer can't use class or method using final keyword

A, C

Which statement about record types is true? (select 2) A. The ability to create records of a specific record type is determined by the profile B. Users cannot view records assigned to a record type their profile does not have access to C. Record types can be used to define picklist values available for a given field D. Record types can only be assigned to one profile at a time

B, C

Which statement should a developer avoid using inside procedural loops? Choose 2 answers A. System.debug('Amount of CPU time (in ms) used so far: ' + Limits.getCpuTime()); B. update contactList; C. List<Contact> contacts = [select id, salutation, firstname, lastname, email from Contact where account =a.id; D. if(o.accountid== aid)

C

Which statement would a developer use when creating test data for products and pricebooks? A.List objList = Test.loadData(Account.sObjectType,'myResource'); B.Pricebook pb= new Pricebook(); C.Id pricebookId=Test.getStandardPricebookId(); D.IsTest(SeeAllData=false);

B, C, E

Which statements are true regarding Roll-Up Summary fields? Select all that apply A. Advanced currency management has no affect on roll-up summary fields. B. Because roll-up summary fields are not displayed on edit pages, you can use them in validation rules but not as the errorlocation for you validation. C. Validation errors can display when saving either the detail or master record. D. Automatically derived fields, such as current date or current user, are allowed in a roll-up summary field. E. Once created, you cannot change the detail object selected or delete any field referenced in your roll-up summarydefinition.

B, C

Which trigger event allows a developer to update fields in the Trigger.new list without using an additional DML statement? (Choose 2) A. After update. B. Before insert. C. Before update. D. After insert.

A, D, E

Which use case requires a partial copy or full sandbox? Choose 3 answers. A. Scalability Testing B. Development Testing C. Quality Assurance Testing D. Batch Data Testing E. Integration Testing

A, C, D

You can create global actions to let users create which of the following records? (choose three) A. Question B. Chatter Posts C. Event (without invitees) D. Opportunity E. Users

A, C

You have created a workflow rule to send an email in your configuration sandbox. For some reason it's not working, what should you double check? (Choose 2) A. You have the correct email address B. Look at the system audit trail C. Check the deliverability settings D. HTML does not work in sandbox, make sure your email has no HTML

B, C

You want to use an External Data Object Table from Heroku carrying Product Category information. The data need to be included in Salesforce and searchable. What do you have to do before you can use the connection? Choose two A. Choose "include as index field" B. Press "validate and sync" C. Choose "include in Salesforce searches" option D. URL / choose the URL (?)

D

public class myController { public string myString; public string getMyString(){ return 'getMyString'; } public string getStringMethod1(){ return myString; } public string getStringMethod2(){ if(myString == null) myString = 'Method2'; return myString; } } <apex:page controller="myController"> {!MyString}, {!StringMethod1}, {!StringMethod2}, {!MyString} </apex:page> What does the user see when accessing the custom page? A. getMyString, B. , , Method2, C.Method2, getMyString D. getMyString„ Method2, getMyString

A, C

What can a lightning component contain in its resource bundle? Choose two answers. A. Custom Client-side rendering behavior. B. Properties files with global settings. C. CSS styles scoped to the component. D. Build scripts for minification.

A

What determines whether a user can create a new record using a specific record type? A. Profile B. Page layout C. Field level security D. Sharing

B

A Developer wants to create a custom object to track Customer Invoices. How should Invoices and Accounts be related to ensure that all Invoices are visible to everyone with access to Account? A. The Account should have a Lookup relationship to the Invoice. B. The Invoice should have a Master -Detail relationship to the Account. C. The Account should have a Master -Detail relationship to the Invoice. D. The Invoice should have a Lookup relationship to the Account.

B

A Hierarchy Custom Setting stores a specific URL for each profile in Salesforce. Which statement can a developer use to retrieve the correct URL for the current user's profile and display this Visualforce Page? A. {$Setup.Url_Settings_c.Instance[Profile.Id].URL__c} B. {!$Setup.Url_Settings_c.URL__c} C. {!$Setup.Url_Settings_c[Profile.Id,URL__c} {!$Setup.Url_Settings_c[$Profile.Id,URL__c}

A

A developer created trigger with following code , list<Account> lstAccounts = new list<Account>(); for(order__c objorder:trigger.new){ account a = [select id from Account where id=:objorder.Account__c]; lstAccounts .add(a); } update lstAccounts; How many orders will be a load when developer attempts to load 150 records? A. 0 B. 1 C. 100 D. 150

B, C, E

A developer creates a method in an Apex class and needs to ensure that errors are handled properly. What would the developer use? Choose 3 answers. A. ApexPages.addErrorMessage() B. A custom exception C. .addError() D. Database.handleException() E. A try/catch construct

B

How can a developer determine from the DescribeSObjectResult if the current user will be able to create record an object in apex? A By using the hasAccess() Method. B. By using the isCreatable() method. C. By using the isInsertable() method. D. By using the canCreate() method.

B

How would a developer change the field type of a custom field on account object from a string to an integer? A. Make the change in the declarative UI, then update the field type to an integer field in-the apex code. B. Remove all references in the code, make the change in the declarative UI, and restore the references with the new type. C. Make the change in the developer console, and then the change will automatically be reflected in the apex. D. Make the change in the declarative UI, and then the change will automatically be reflected in the apex code.

A, C, D

Identify the field update limitations. (choose three) A. Read-only fields like formula or auto-number fields aren't available for field updates. B. The results of a field update can't trigger additional rules such as validation, assignment, auto-response, or escalationrules. C. In a batch update, workflow is retriggered on all entities where there is a change D. Field updates that are executed as approval actions don't trigger workflow rules.

C

In a single record, a user selects multiple values from a multi-select picklist. How are the selected values represented in Apex? A. As a String with each value separated by a comma. B. As a List<String> with each value as a element in the list. C. As a String with each value separated by semi colon. As a Set<String> with each value as a element in the set.

B

In order to create an App Launcher component in lightning what must an admin do? A. Navigate to Setup-Customize-User Interface to enable the component for the Lightning App Builder. B. Contact Salesforce to have the component activated for the Lightning App Builder. C. Purchase a license for the Lightning App Builder. D. Join the pilot Lightning App Builder team

D

In the Lightning Component framework, where is client-side controller logic contained? Choose 1 answer. A. Apex B. Visualforce C. HTML D. JavaScript

C, D

In the Lightning Component framework, which resource can be used to fire events? Choose 2 answers A. Visualforce controller options B. Third-party web service code C. Third-party Javascript code D. Javascript controller actions

B

Universal containers has included its orders as an external data object into Salesforce. You want to create a relationship between Accounts and the Orders object (one-to-many relationship) leveraging a key field for account which is on both external object and Account. Which relationship do you create? A. Master Detail Relationship B. Indirect Lookup Relationship C. Lookup Relationship D. Hierarchical Relationship External Lookup Relationship

C

Universal containers want an org for development which can be refreshed in every 5 days with all the configuration and some data. What org do you choose? A. Developer Sandbox B. Developer Pro Sandbox C. Partial copy sandbox D. Full Sandbox

B

To enable the Publisher Actions area on Page Layouts, navigate to: A. Setup | Customize | Feeds | Settings B. Setup | Customize | Chatter | Settings C. Setup | Customize | Actions | Settings D. Setup | Customize | <Objects> | Settings

C, E

Universal Container installs an unmanaged package. Which of the following are true? Choose 2. A. Tests are executed during deployment B. Unmanaged packages can be upgraded C. Unmanaged packages don't have a version number D. Unmanaged packages have a namespace prefix E. Components of unmanaged packages can be edited

C

Universal Container is using assignment rules to distribute cases to regional teams. Which of the following are true? A. It is possible to have multiple active assignment rules B. Cases may be assigned to public groups (if configured) C. Cases may be assigned to queues (if configured) D. A workflow field update can be used instead

C, D

Universal Container want to store an area code and wants to be able to search for it in applications (apex). Which are possible fields to store the data? Choose 2 A. Email B. Multi Picklist C. Text D. Number E. Phone

A, C

Universal Container want to store an area code and wants to be able to search for it in searches. Which are possible fields to store the data? (choose 2) A. Phone B. Email C. Text D. Multi Picklist

A

A developer created an Apex trigger using the Developer Console and now wants to debug code. How can the developer accomplish this in the Developer Console? A. Open the Logs tab in the Developer Console. B. Select the Override Log Triggers checkbox for the trigger. C. Add the user name in the Log Inspector. D. Open the Progress tab in the Developer Console.

C

How would a developer determine if a CustomObject__c record has been manually shared with the current user in Apex? A. By querying the role hierarchy. B. By calling the isShared() method for the record. C. By querying CustomObject__Share. D. By calling the profile settings of the current user.

C, D, E

Identify the standard Lightning components. (choose three) A. List View B. Dashboards C. Rich Text D. Visualforce Page E. Reports

D

Universal Containers has built a recruiting application with two custom objects, Job Applications and Reviews that have a master-detail relationship. Users should NOT be allowed to delete review records after job application records have been approved. How would a developer meet this requirement? A. Change the interviewer's profile to Read-only for the review object B. Use workflow to change the page layout to Read-only C. Remove the Delete button from the job application page layout D. Use a validation rule in conjunction with a roll-up summary field

B

Universal containers wants to rollout new product bundles with several pricing options. Pricing options include product-price bundles, account specific pricing and more. Which product satisfies the needs? A. Workflow on Opportunity/Opportunity Product B. Custom Appexchange-app for product-pricing C. Formula fields on Opportunity/Opportunity Product D. Lightning process builder

A

What actions types should be configured to display a custom success message? A. Update a record. B. Post a feed item. C. Delete a record. D. Close a case.

A

Describe the ramifications of field updates and potential for recursion for the following scenario: If a field update for Rule1 triggers Rule2, and a field update for Rule2 triggers Rule1. A. The updates create a loop and the org limits for workflow time triggers per hour will likely be violated. B. When the second trigger is saved a Imminent Loop Error message will be displayed and the workflow rule update will notsave. C. The updates create a loop and the org will be blocked until the admin resolves the issue. D. Loop is allowed to run 25 times within one hour. If it does not end on its own the process will be stopped by R&D.

B

Developer need to verify that the account trigger is working fine without changing Org data. What should the developer do to test the Account trigger? A. Use New button on Account tab to create new record B. Use the test menu on developer console to run all test classes for the account trigger. C. Use force.com IDE D. Use Execute Anonymous feature on developer console

C

Universal containers has a custom object "service" which has a lookup relationship to Account. Universal containers wants to enhance Salesforce1 with an action that allows account managers to enter a new service to an Account while looking at the account? A. Enter an object specific action to Service and put it in the Account Layout B. Enter an object specific action to Service and put it in the Service Layout C. Enter an object specific action to Account and put it in the Account Layout D. Enter an object specific action to Account and put it in the Service Layout

C

Universal containers has a custom object that has a N:M relationship with opportunityLineItem carrying price and amount information. In order to compute total amounts and total prices per Opportunity using Rollup summary fields, what field type will you use? A. Crossobject B. Lookup C. Master-Detail D. Junction

D

Universal containers has a custom object that has a N:M relationship with opportunityLineItem carrying price and amount information. In order to compute total amounts and total prices per Opportunity using Rollup summary fields, what relationship type will you use? A. Crossobject B. Lookup C. Master-Detail D. Junction

A, C

Field type conversion. Which of the following are true? (choose 2) A. Data can be lost when converting from autonumber to text B. Information can be lost when converting from text area (rich) to text area (long) C. Data can be lost when converting from number to currency (assuming that field lengths are identical) D. Data can be lost when converting from simple picklist to multi picklist

A, C

What are the supported content sources for custom buttons and links? (Choose 2 Answers) A. VisualForce Page. B. Static Resource. C. URL. D. Chatter File. E. Lightning Page.

A

Objects of this Apex class allow developers to create list controllers similar to, or as extensions of, the pre-built Visualforce list controllers provided by Salesforce. A. StandardSetController Class B. StandardController Class C. Controller Class D. VisualforceSetController Class E. VisualforceControllerClass F. None of the above

D

The Review_c object has a lookup relationship to the job_Application_c object. The job_Application_c object has a master-detail relationship up to the position_c object. The relationship is based on the auto-populated defaults? What is the recommended way to display field data from the related Review _C records a Visualforce page for a single Position_c record? Select one of the following: A. Utilize the Standard Controller for Position_c and cross-object Formula Fields on the Job_Application_c object to displayReview_c data. B. Utilize the Standard Controller for Position_c and a Controller Extension to query for Review_c data. C. Utilize the Standard Controller for Position_c and expression syntax in the Page to display related Review_c through theJob_Applicacion_c inject. D. Utilize the Standard Controller for Position_c and cross-object Formula Fields on the Review_c object to display Review_cdata.

B

The sales management team requires that the Lead Source field of the Lead record be populated when a Lead is converted. What would a developer use to ensure that a user populates the Lead Source field prior to converting a Lead? A. Process builder B. Validation rule C. Formula field D. Workflow rule


Kaugnay na mga set ng pag-aaral

SmartBook Chapter 27: The Lymphatic and Immune Systems (Part 2)

View Set

C14 -READING FURTHER Inside the Constitutional Convention

View Set

Phys. Diagnosis / Neuro / (Mental Status and CN's)

View Set

AP US History: From The Age of Exploration to Hurricane Katrina

View Set

8.1 Introduction to Square Roots Page 518

View Set

Underwriting, Pricing Claims - Section 16

View Set