Which folder contains the unminified versions of the controllers found in ~./clients/~?
A. ~./jssource/src_files/include/~
B. ~./jssource/src_files/modules/~
C. ~./jssource/src_files/install/~
D. ~./jssource/src_files/clients/~
You are creating a custom RecordView controller and must extend the parent controller. Which code snippet will help you accomplish this task?
A. ~this._super('_flush');~
B. ~extends: '[Module]Record';~
C. ~this._super('_RecordView');~
D. ~extendsFrom: 'Recordview';~
A customization requires a developer to dependently require a field based on another field's value.
According to the Sugar Developer Guide, which two approaches would be usedby the developer? (Choose two.)
A. Edit the field in Studio and specify a dependent formula for the "Required" attribute.
B. Add a JavaScript file to the JSGroupings to append the logic to ~./include/javascript/ sugar_grp7.min.js~ for availability on the RecordView.
C. Extend the RecordView controller and add a validation task.
D. Create a dependency using the extension framework and the SetRequired action.
You updated a lead record using the Sugar REST v10API. Which endpoint did you use?
A. ~GET /Leads/[lead_id]~
B. ~POST /Leads/[lead_id]~
C. ~POST /Leads/?id=[lead_id]~
D. ~PUT /Leads/[lead_id]~
You need to add a new us English label specific to the Leads module. Which file would you update?
A. ~./custom/lnclude/language/en_us.[unique_id].php~
B. ~./custom/Extension/application/Ext/Language/en_us.[unique_id].php~
C. ~./include/language/en_us.[unique_id].php~
D. ~./custom/Extension/modules/Leads/Ext/Language/en_us.[unique_id].php~
You created a new endpoint for the REST v10API.
Which two statements describe the class you created? (Choose two.)
A. The class uses the DBManager class to define attributes of your endpoint within the database.
B. The class contains a Sidecar controller that is executed when your endpoint is called.
C. The class uses the registerRestApi() method to define attributes of your endpoint.
D. The class contains a custom PHP method that is executed when your endpoint is called.
What are three elements of the dictionary array of a vardef? (Choose three.)
A. Primary_key
B. Last_modified
C. Table
D. Relationships
E. Fields
Which two database tables are used to store metadata aboutcustom fields created using theStudio tool and object relationships? (Choose two.)
A. fields_meta_data
B. data_sets
C. relationships
D. custom_fields
According to the Sugar Developer Guide, what is the recommended approach to fetch a new instance of the accounts bean class?
A. ~$bean = new Account();~
B. ~$bean = BeanFactory::newBean('Accounts');~
C. ~$bean = BeanFactory::retrieveBean('Accounts');~
D. ~$bean = new SugarBean();~
You need to add a panel to the Administration area of the application. In which directory would you add a file to accomplish this task?
A. ~./Extension/modules/Administration/Ext/Administration/~
B. ~./custom/modules/Administration/Ext/Administration/~
C. ~./custom/Extension/modules/Administration/Ext/Administration/~
D. ~./custom/Extension/modules/Administration/Ext/AdmJnlstration/panels/~