SalesForce Dev401 (SP15)

Réussis tes devoirs et examens dès maintenant avec Quizwiz!

Which of the following is true about Master-Detail relationships? (Select all that apply) A. Allows reparenting of child objects B. Ownership/access of child determined by master C. Does not allow cross-object formula fields D. Detail can be a standard object E. Detail inherits color and associated tab icon

"A. Allows reparenting of child objects B. Ownership/access of child determined by master E. Detail inherits color and associated tab icon"

Which of the following will cause data loss? A. Changing data type of an External ID to a non Text/Number/Email field B. Deleting a Custom Field C. Changing from a picklist to multi-select picklist D. Changing text field to auto-number

"A. Changing data type of an External ID to a non Text/Number/Email field B. Deleting a Custom Field"

Which of the following are Visualforce controllers? A. Custom Controllers B. Controller Extensions C. Standard Controllers D. APEX Controllers E. All of the above

"A. Custom Controllers B. Controller Extensions C. Standard Controllers"

Which type of report can you use for Analytics Snapshot? (Choose all that apply) A. Summary B. Matrix C. Joined D. Tabular

"A. Summary D. Tabular"

The following is true about Cross-Object Formulas: (Select all that apply) A. Can reference objects regardless of their relationship B. Can span across multiple levels of relationships C. Cannot reference merge fields for objects related to Activities D. Cannot reference record owner merge fields for any obj.

"B. Can span across multiple levels of relationships C. Cannot reference merge fields for objects related to Activities D. Cannot reference record owner merge fields for any obj."

Which of the following are true about Cross-Object Formula fields: (Select all that apply) A. Cannot be created for objects linked by master-detail relationship B. Cannot reference cross-object formulas in roll-up summary fields C. Cannot reference merge fields for objects related to activities D. Can only span one relationship level either up or down

"B. Cannot reference cross-object formulas in roll-up summary fields C. Cannot reference merge fields for objects related to activities"

When running a report, the primary currency: (select all that apply) A. Personal currency of user running the report B. Corporate Default currency C. Currency selected on record D. Currency specified in the report criteria

"B. Corporate Default currency C. Currency selected on record"

Which field types may be used as external IDs? (select all that apply) A. Date B. Email C. Text D. Phone number E. Number

"B. Email C. Text E. Number"

Which of the following are true about Sandboxes? (Select all that apply) A. They are deleted if no one has logged in for 90 days B. They are deleted if they have been locked for 90 days C. They are deleted if they have been locked for 60 days D. They are deleted if no one has logged in for 180 days E. They are only deleted when then production org is deleted.

"C. They are deleted if they have been locked for 60 days D. They are deleted if no one has logged in for 180 days"

A developer is building a custom application using the declarative framework. Which customization is available on the page layout? Choose 2 answers a. Add an existing Visualforce page to an inline section b. Make a field Required, based on a data value in another field c. Create a three-column section d. Add custom detail and list buttons

"a. Add an existing Visualforce page to an inline section d. Add custom detail and list buttons"

Which two (2) items most closely relate to the controller layer of the model view controller paradigm? a. Apex classes b. Apex extensions c. Custom tab d. Page Layout

"a. Apex classes b. Apex extensions"

Which process can be tracked in the Debug Logs? Choose 2 answers a. Assignment rule b. Roll-up Summary field calculation c. Formula field calculation d. Workflow rules

"a. Assignment rule d. Workflow rules"

How does a developer enable users to access tags in the sidebar? Choose 3 answers a. By enabling tags for the organization b. By adding tags to the sidebar in the home page layout c. By enabling tags on user's profile d. By enabling tags on the page layout for an object e. By enabling tags for public groups

"a. By enabling tags for the organization b. By adding tags to the sidebar in the home page layout d. By enabling tags on the page layout for an object"

Which is a valid data type for a custom formula field? Choose 3 answers a. Checkbox b. Date c. Email d. Currency e. Percent

"a. Checkbox b. Date e. Percent"

Which action is NOT necessary when using the declarative capabilities of the Force.com platform to build custom applications? Choose 3 answers a. Compile code b. Configure an application server c. Write SQL queries to create reports d. Build a data model

"a. Compile code b. Configure an application server c. Write SQL queries to create reports"

Universal containers tracks Positions as a custom object in a recruiting application. When position records are created, they have a status of New and are visible to only the position owner. Once a position goes through an approval process, the status is changed to Approved. Approved positions should be visible to the entire organization. How can a developer meet this requirement? Choose 2 answers a. Create a criteria-based sharing rule that states that Approved positions are shared with the entire organization b. Create a workflow field update that updates a custom field called Sharing on a position once the status is Approved c. Create an Apex trigger that automatically updates sharing on a position once the status is Approved. d. Create a formula field that updates the sharing on a position once the status changes to Approved

"a. Create a criteria-based sharing rule that states that Approved positions are shared with the entire organization c. Create an Apex trigger that automatically updates sharing on a position once the status is Approved."

A developer had added a custom object tab to an application Which additional feature will become available by default for the object in the application? Choose 3 answers {Cross check opted answer} a. Create a new sidebar component b. Custom reporting c. Search d. Quick create e. Recent items

"a. Create a new sidebar component c. Search e. Recent items"

Which is required step for creating a many-to-many relationship? Choose 2 answers a. Create two relationships b. Create a custom object to join two objects c. Create a many-to-many relationship between two objects d. Create the related list on the page layout of the junction object

"a. Create two relationships b. Create a custom object to join two objects"

Given a three tier model ( UI layer, business logic layer, data layer), which feature of the Force.com platform is associated with the data layer? Choose 3 answers a. Custom fields b. Custom tabs c. Custom relationships d. Custom objects e. Custom applications

"a. Custom fields c. Custom relationships d. Custom objects"

Master-detail relationships can be used to model many-to-many relationships between two objects. Which statement is TRUE about many-to-many relationships? a. Each use a junction object to connect the two objects that need to relate to each other b. Each master object record displays a related list of the associated junction object records c. Each record of one object is linked to multiple records from another object and vice versa d. Each primary and secondary object has a standard report but custom report types are not available

"a. Each use a junction object to connect the two objects that need to relate to each other b. Each master object record displays a related list of the associated junction object records c. Each record of one object is linked to multiple records from another object and vice versa"

Which statement is TRUE about Encrypted Custom fields? Choose 3 answers a. Encrypted fields can be included in search results b. Encrypted fields are not available for validation rules or Apex scripts c. Encrypted fields can be included in report results d. Encrypted fields are not available in filters for list views, reports and Roll-up Summary fields

"a. Encrypted fields can be included in search results c. Encrypted fields can be included in report results d. Encrypted fields are not available in filters for list views, reports and Roll-up Summary fields"

Which feature is available for custom objects? Choose 3 answers a. Field history tracking b. Assignment rules c. Criteria-based sharing d. Queues

"a. Field history tracking c. Criteria-based sharing d. Queues"

Which of the following refers to the data model of Salesforce? (Choose 2) a. Force.com API b. Force.com metadata API c. Sandbox d. Force.com IDE

"a. Force.com API b. Force.com metadata API"

A business requirement can be met by using either a formula field or an Apex trigger. Why would a developer use a formula field instead of an Apex trigger? Choose 2 answers a. Formula fields do not require test methods to deploy b. Formula fields allow greater control and flexibility than Apex triggers c. Formula fields can aggregate data from child records d. Formula fields can be created and deployed using only a browser

"a. Formula fields do not require test methods to deploy d. Formula fields can be created and deployed using only a browser"

Which element is included in the security model for Force.com Sites? Choose 2 answers {crosscheck opted option} a. Full CRUD permissions on all custom objects b. Read/write permissions on all standard objects c. Named Visualforce pages d. Restricted IP ranges

"a. Full CRUD permissions on all custom objects b. Read/write permissions on all standard objects"

Using the Force.com platform declarative model to build an application, which of the following do you NOT have to do? Please select three (3) choices. a. Install a database server b. Configure an application using clicks not code c. Deploy a web server d. Administer and e-mail server

"a. Install a database server c. Deploy a web server d. Administer and e-mail server"

Which statement is true regarding a Force.com domain name? Choose 3 answers a. It must be unique b. It is usually the name of your company c. It cannot be changed once it is registered to your organization d. It cannot be mapped to your company's domain

"a. It must be unique b. It is usually the name of your company c. It cannot be changed once it is registered to your organization"

What is supported by the Force.com Data Loader? Choose 3 answers a. Perform insert and update operations across a set of records b. Load more than 50,000 records at a time c. Perform a rollback of a transaction d. Insert records for two different objects in a single call e. Import data for custom objects

"a. Perform insert and update operations across a set of records b. Load more than 50,000 records at a time e. Import data for custom objects"

Which option is available when configuring the list if initial submitters in an approval process? Choose 2 answers a. Roles and subordinates b. Approval team members c. Public groups d. Profiles

"a. Roles and subordinates c. Public groups"

In a recruiting application, all users should be able to see positions with a status of Open. If the status is anything other that Open, the position should be visible only to the record owner. How would a developer accomplish this? Choose 2 answers a. Set the organization-wide default for position to private, then use a criteria based sharing rule to automatically share open positions b. Set the organization-wide default for position to public read-only, then use a sharing rule to restrict access to closed positions c. Set the organization-wide default for position to private, allowing owners to use manual sharing to add or remove access as positions change status d. Specify view only access for open positions on users profiles

"a. Set the organization-wide default for position to private, then use a criteria based sharing rule to automatically share open positions c. Set the organization-wide default for position to private, allowing owners to use manual sharing to add or remove access as positions change status"

Which statement is true regarding Force.com Sites? Choose 3 answers a. Sites can leverage declarative page layouts as web pages b. Sites enables developers to build public, unauthenticated websites c. Sites are built with visualforce pages d. Sites leverage data and content in a salesforce org

"a. Sites can leverage declarative page layouts as web pages c. Sites are built with visualforce pages d. Sites leverage data and content in a salesforce org"

What is a capability of Data Loader? Choose 2 answers a. The Data Loader can load more than 50,000 records at a time b. The Data Loader can bypass sharing model settings c. The Data Loader can be executed from the command line d. The Data Loader can de-duplicate records

"a. The Data Loader can load more than 50,000 records at a time c. The Data Loader can be executed from the command line"

Which capability does building an application on the Force.com platform provide? Choose 3 answers a. The ability to internationalize and localize applications b. The ability to run reports on configuration changes c. The ability to build applications with clicks not code d. The ability to have applications upgraded without losing customizations

"a. The ability to internationalize and localize applications c. The ability to build applications with clicks not code d. The ability to have applications upgraded without losing customizations"

A developer wants to build an application on the Force.com platform. The data model, the business logic and the requirements have been considered. The user access requirements have not been considered. What is the implication of building the application given the available information? (Choose 2) a. The data model may not support the required security controls b. The developer will not be able to build any reports or dashboards if the security controls have not been considered c. The security controls may not support the approval process requirements d. The developer cannot establish security controls if not completed upon initial setup.

"a. The data model may not support the required security controls b. The developer will not be able to build any reports or dashboards if the security controls have not been considered"

A developer attempts to load data into the sandbox environment using the Data Loader GUI. The data load fails due issues. What should the developer check to diagnose the problem? Choose 2 answers a. The endpoint URL b. The user name c. The password encryption settings d. The mapping file

"a. The endpoint URL b. The user name"

Which statement is TRUE about master-detail relationship in the Force.com platform? Choose 2 answers a. The master-detail relationship field is required on the page layout of the detail record b. When defining a master-detail relationship, the custom object on which you are working is the master c. The security settings for the master record control the detail record. d. When a master record is deleted, the child records remain in the system without a master record

"a. The master-detail relationship field is required on the page layout of the detail record c. The security settings for the master record control the detail record."

Why might an analytic snapshot fail during a scheduled run? Choose 3 answers a. The running user has been made inactive b. The source report has been resaved as a matrix report c. The target object contains an Apex trigger d. The target object is a custom object e. The source report was not created by an Administrator

"a. The running user has been made inactive b. The source report has been resaved as a matrix report c. The target object contains an Apex trigger"

Out of the following which applications are suitable for Force.com? (Choose three) a. Time card application b. Word processor c. Online auction management d. Inventory management

"a. Time card application c. Online auction management d. Inventory management"

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

"a. Universally required field settings are respected d. Validation rules are respected"

Hiring managers at Universal containers would like a visual mechanism for determining review score outliers. Review scores are captured as a custom field on a custom Review object and can range from 1 to 10. Any review score that is >8 should be highlighted in green. Any review score that is < 4 should be highlighted in red. How would a developer accomplish this? a. Use custom summary formulas {@ the time of creating u need to create Summary formula and I have used summary report} b. Use matrix reports c. Use conditional highlighting d. Use charts

"a. Use custom summary formulas {@ the time of creating u need to create Summary formula and I have used summary report} if 2 options then A, C c. Use conditional highlighting"

In a recruiting applicatiion using an approval process on a custom object called Positions. A position record requires simultaneous approvers in an approval process step When can the position record advance to the next step in the process? Choose 2 answers a. When all approvals are received if unanimous approval is required b. When one of the approvers skips the final step in the process c. When the first approval is received if unanimous approval is not required d. When a majority of approvals is received when amajority approval is required

"a. When all approvals are received if unanimous approval is required c. When the first approval is received if unanimous approval is not required"

Which mechanism allows for authenticated access to a Force.com site? Choose 2 a. It is not possible to provide authentication for a Force.com Site b. An active Customer Portal c. An active Partner Portal d. Setting restricted IP ranges for your site

"b. An active Customer Portal c. An active Partner Portal"

If a change is made to an approval process, how can a developer determine the user that made the change? Choose 2 answers. a. By examining the Debug Log b. By looking at ""Modified By"" on the approval definition c. By checking the field history on the associated record d. By examining the setup audit nail

"b. By looking at ""Modified By"" on the approval definition d. By examining the setup audit nail"

Which dashboard component displays a grand total across a set of data? Choose 2 answers a. Table b. Chart c. Pivot d. Metric e. Gauge

"b. Chart d. Metric"

Which type of tab can a developer create? Choose 3 answers a. Apex tabs b. Custom object tabs c. Visualforce tabs d. Standard object tabs e. Web tabs

"b. Custom object tabs c. Visualforce tabs e. Web tabs"

The organization-wide default settings for Accounts is Private. A manger resides above a team in the role share some of the account data with the team. Which feature can extend the viewing privileges of the team to allow them to see each other's data? Choose 2 answers a. Report Folder setting b. Dashboard Running User c. Report Running User d. Dashboard Folder setting

"b. Dashboard Running User c. Report Running User"

In a bug tracking application, Universal Containers has created a time-based workflow action that will execute 30 days after a Bug record is created. The developer would like to test to make sure that rule is working the way that it should. Which feature is available for testing? Choose 2 answers a. Bug History related list b. Debug Log c. Time-based workflow queue d. Acitivity History related list

"b. Debug Log c. Time-based workflow queue"

Which statement is TRUE about field-level security? Choose 2 answers. a. It can be controlled at record level b. It is specified for each profile c. It determines the values displayed in a visible picklist field d. It is enforced in the SOAP-API/It can be enforce in Web services

"b. It is specified for each profile d. It is enforced in the SOAP-API/It can be enforce in Web services"

Which of the following cannot be used on a user page layout? Please select two choices. a. Tag b. Links c. Buttons d. Custom fields e. Inline Visualforce

"b. Links e. Inline Visualforce"

Which Force.com feature most closely aligns with the View aspect of the Model-View-Controller design pattern. Choose 2 answers a. Validation rule b. Page layout c. Custom field d. Visualforce page

"b. Page layout d. Visualforce page"

Which option exists for calculations or analysis in reports? Choose 3 answers a. Maintain calculations from previous runs of the report b. Plot multiple sets of data on one chart c. Set parameters to highlight outliers d. Perform calculations on summary data

"b. Plot multiple sets of data on one chart c. Set parameters to highlight outliers d. Perform calculations on summary data"

Which aspect of an application is addressed in the business logic layer? Choose 2 answers a. Customized user interface b. Process automation c. Extensible data model d. Data entry validation rules

"b. Process automation d. Data entry validation rules"

Which property of a field can be edited within the page layout editor? Choose 2 answers a. Always displayed b. Required c. Field Dependency d. Controller e. Read-only

"b. Required e. Read-only"

What is a feature of custom report types? Choose 2 answers a. The ability to customize the output layout of a report b. The ability to customize the available list of columns displayed in the report builder interface c. The ability to create an exception report or anti-join d. The ability to join related objects within a report

"b. The ability to customize the available list of columns displayed in the report builder interface d. The ability to join related objects within a report"

How can a wireless device user approve a record? Choose 3 answers a. Via voice recognition b. Via Approvals in Chatter c. Via email from a wireless device d. Via a text message e. Via a mobile browser that supports access to the Salesforce web application

"b. Via Approvals in Chatter c. Via email from a wireless device e. Via a mobile browser that supports access to the Salesforce web application"

A developer needs to support multiple currencies for a custom object in an application. The multi-currency feature has been enabled for the organization. What does the developer need to know in order to successfully support this application? Choose 2 answers a. The multi-currency feature will automatically track historical exchange rates. b. Roll-up summary fields on a parent record will calculate incorrectly if the child records have multiple currencies c. Administrators can add additional currencies after the application has been built d. Currency ISO code will need to be supplied when inserting records in different currencies.

"c. Administrators can add additional currencies after the application has been built d. Currency ISO code will need to be supplied when inserting records in different currencies. "

Which action is available to a developer when by a lookup relationship? Choose 2 answers a. Create a roll-up summary field on the parent object to count child records b. Create a cross-object formula field on the parent object to reference fields on the child object c. Create a custom report type that allows customization of fields displayed from both parent and child objects d. Create a cross-object formula field on the child object to reference fields on the parent object

"c. Create a custom report type that allows customization of fields displayed from both parent and child objects d. Create a cross-object formula field on the child object to reference fields on the parent object"

In a recruiting application, a master-detail relationship has been defined between two custom objects, Job Applications (master) and Reviews (detail). Which statement is TRUE? Choose 2 answers a. Review records may exist without an associated job application b. The master-detail relationship between Job Applications and Reviews is defined on the Job Application object c. Deleting a Job application record will delete associated review records d. Review records will inherit ownership from the associated job application

"c. Deleting a Job application record will delete associated review records d. Review records will inherit ownership from the associated job application"

After creating Workflow Rule with a time-based action that send an email reminder to users 14 days after a record has been developed would like to test to make sure that the rule is working the way in which it was intended. How can the developer verify that the Workflow Rule is working? Choose 2 answers a. Create a new record, then check the outbound message queue b. Select the developer's user name in the time-based Workflow queue setup, create a new record, then check the queue c. Select the developer's user name in the Debug Log setup, create a new record, then check the Debug Log for evidence Workflow executed d. Create a new record, then check the time-based Workflow queue

"c. Select the developer's user name in the Debug Log setup, create a new record, then check the Debug Log for evidence Workflow executed d. Create a new record, then check the time-based Workflow queue"

when configuring time-dependent workflow actions, which evaluation criteria selection is available? Choose 2 answers a. every time a record is viewed b. every time a record is created or edited c. only when a record is created d. when a record is created, or when a record is edited and did not previously meet the rule criteria

"c. only when a record is created d. when a record is created, or when a record is edited and did not previously meet the rule criteria"

Universal Containers tracks Positions in a custom object as part of a recruiting application, New positions must be approve can be filled. Only recruiting managers can submit new positions for approval. a. Create a recruiting managers group, set approvals to private and create a sharing exception for recruiting manager b. Create a workflow rule whereby only users with the recruiting manager profile are allowed to submit positions for approval c. Create a validation rule that check whether a user with the recruiting manager profile is saving the new positions for approval d. Create an approval process whereby only users with the recruiting manager role are allowed to submit position role are allowed to submit position

"d. Create an approval process whereby only users with the recruiting manager role are allowed to submit position role are allowed to submit position"

A developer would like to modify the contents of the hover details for a custom object called Position. What would a developer customize to accomplish this? (Choose 2) a. Position search layouts b. Position record types c. Position field dependencies d. Position page layouts e. Mini Page Layout {as i implement click on page layout OPT mini page layout}

"d. Position page layouts e. Mini Page Layout {as i implement click on page layout OPT mini page layout}"

Which of the following is true about Validation Rules? Select two correct answers. A. Validation rules are executed when the user clicks on the Save button. B. Validation rules are not applicable when the data is stored using the API. C. If the error condition evaluates to true, then an error message is generated and the record is not saved. D. Validation rules are applied only when a new record is created, and not when an existing record is edited.

A and C. Validation rules are applicable when the record is saved using the API, hence the option B is incorrect. Validation rules are applied every time the record is saved, hence D is incorrect.

What does <apex: page controller ="MyController"> reference?

A custom controller reference on a Visualforce page

Which of these are valid data type in Force.com development platform. Select the two correct answers. A. Percent B. URL C. Choicebox D. Long E. Decimal

A, B. Percent and URL are valid data types in Salesforce.

____ sharing rules determine whom to share records with based on field values in records? A. Criteria-based B. Data - based C. Object - based D. Manual E. Apex

A. Criteria-based

Which of these represent the correct syntax for custom controllers? Select the one correct answer. A. <apex:page controller=""MyController""> B. <apex:page standardController=""MyController""> C. <apex:page customController=""MyController""> D. <apex:page privateController=""MyController"">

A.

Which report type is used to group rows of data and show their subtotals. Select the one correct answer. A. Summary B. Matrix C. Tabular D. Detailed

A.

Salesforce.com processes any rules in the following order: 1. Validation rules 2. Assignment rules 3. Auto-response rules 4. Workflow rules (with immediate actions) 5. Escalation rules A. 1->2->3->4->5 B. 1->3->4->2->5 C. 4->1->2->3->5 D. 1->3->5->4->2

A. 1->2->3->4->5

How many options may a Dashboard Filter have? A. 10 B. 20 C. 30 D. 40

A. 10

What is the difference between 15 and 18 Digit Salesforce.com Id's? A. 15 Digit Id is Case Sensitive where as 18 Digit Id is Case Insensitive B. 18 Digit Id is Case Sensitive where as 15 Digit Id is Case Insensitive C. Both are Same D. 15 Digit Id's is no longer used and SFDC now uses 18 Digit Id's

A. 15 Digit Id is Case Sensitive where as 18 Digit Id is Case Insensitive

What is the number of components that can be added to a dashboard? Select the one correct answer. A. 20 B. 25 C. 50 D. 100

A. A dashboard can have upto 20 components.

Universal Recruiters will like to hire ten employees in two months. In a recruitment application, a dashboard component needs to be built that will display progress towards achieving this goal of hiring of ten employees. Which dashboard component can be used to implement this feature? Select the one correct answer. A. Gauge B. Metric C. Table D. Chart E. VisualForce page

A. A gauge is used to display progress towards a goal.

What is not possible with User object page layout A. Add a custom button B. Add a custom Link C. Add a custom Field D. Add an Inline Visual Force Page

A. Add a custom button

What are process centric applications? A. An application that automates business process which eliminates unnecessary touch points B. An application with data and services that are shared by multiple users in different locations C. Data base specially designed for storing data in the form of spreadsheets D. None of the above.

A. An application that automates business process which eliminates unnecessary touch points

A customer has requested a user interface where list view of four objects can be accessed together with frequent navigation across them. Which feature of Force.com platform can be used to support this requirement? Select the one correct answer. A. Console B. Dashboards C. Analytical Snapshot D. Packages E. Layout template

A. Console tab allows easy navigation across multiple object types.

A user at Universal Container has reported an issue with respect to approval process. You need to analyze this issue by reviewing the debug messages that get generated for this particular users. Which feature of the platform can be used to support this requirement. Select the one correct answer. A. Debug Log B. System Log C. Setup Audit Trail D. Field level security

A. Debug Log can be used to view the debug/error messages generated for a particular user.

If you have an email campaign and a telemarketing campaign that both influenced the same opportunity, and you designated the email campaign as the primary campaign source, the campaign statistics opportunities fields will be populated for the? A. Email Campaign B. Telemarketing Campaign C. Both Campaigns D. Blank

A. Email Campaign

Fields of the which of the following type is not allowed to be set as external ids. Select one correct answer. A. Date B. Number C. eMail D. Text

A. Fields of type external id can be defined as Text, Number or Email.

Dated Exchange Rates are not used for? A. Forecasting B. Opportunities C. Opportunity products D. Opportunity product schedules

A. Forecasting

Dated Exchange Rates are not used for? A. Forecasting B. Opportunities C. Opportunity products D. Opportunity product schedules

A. Forecasts use the current exchange rate

Which of the following is not a type of the Custom Setting? A. Grid Custom Setting B. List Custom Setting C. Hierarchy Custom Setting D. None of the Above

A. Grid Custom Setting

Which of the following cannot be included in a VisualForce page? Select the one correct answer. A. Java B. JavaScript C. HTML D. Flash

A. It is not possible to include Java code in VisualForce page.

Which type of field cannot be universally required? A. Lookup B. Text C. Email D. Number

A. Lookup

Which of these is true about the Lookup Relationship. Select one correct answer. A. Parent is not a required field and may be omitted. B. Deleting an object deletes its children. C. Roll-up summary field can be used to perform basic operations over all children of a parent record. D. Security access of the child record is dependent upon the parent record.

A. Parent is not a required field in Lookup relationship

Universal Recruiters need to ensure that the Social Security Number and Phone Numbers follow a specific pattern. Which function can be used to implement this functionality. Select the one correct answer. A. REGEX B. EXPRMATCH C. ISNUMBER D. PRIORVALUE E. VLOOKUP

A. REGEX function is used to check a text field matches the regular expression.

What is the View of the MVC design? A. Requests from the model the information that it needs to generate an output representation. B. Notifies its associated views and controllers when there has been a change in its state. C. Used to perform the actions whenever users interact with visual force. D. None of the aboveNotifies its associated views and controllers when there has been a change in its state.

A. Requests from the model the information that it needs to generate an output representation.

What happens to the Secondary Relationship when the Primary Relationship is deleted in the Junction Object? A. Secondary Relationship becomes Primary Automatically B. Secondary Relationship is made Primary manually C. Nothing Happens D. You can't delete the primary relationship

A. Secondary Relationship becomes Primary Automatically

"What is the metadata-driven development model?

An app development model that allows apps to be defined as declarative "blueprints," with no code required. Data models, objects, forms, workflows, and more are defined by metadata.

To which value opportunity defaults when converting a lead to an opportunity? A. Stage Defaults to first option in the picklist, close date defaults to the last day in the quarter, and the amount defaults to blank B. Stage defaults to first option in the picklist, close date defaults to 3 months from conversion date, and amount defaults to blank C. Stage defaults to Blank, close date defaults to Today, and amount defaults to blank D. User defines amount, close date, and stage upon conversion E. None of the above

A. Stage Defaults to first option in the picklist, close date defaults to the last day in the quarter, and the amount defaults to blank

Archived products, price books, price book entries, and assets do not count against storage? A. True B. False

A. True

Criteria based sharing rules for Text and Text Area fields are case-sensitive. A. True B. False

A. True

Data storage and file storage are calculated asynchronously? A. True B. False

A. True

Divisions do not restrict users' access to data and are not meant for security purposes. A. True B. False

A. True

Encrypted fields are editable regardless of whether the user has the ""View Encrypted Data"" permission. A. True B. False

A. True

For dynamic dashboards, Running user can be set as the logged-in user? A. True B. False

A. True

If a lead, with a single marketing campaign is converted, the campaign information will map to the newly created contact and opportunity record and will be available for reporting? A. True B. False

A. True

In Page Layout can you add inline visual force page? A. True B. False

A. True

Only Customer Portals can be used for self-registration in Salesforce.com Sites A. True B. False

A. True

Person accounts count against both account and contact storage because the API considers each person account to consist of one account as well as one contact. A. True B. False

A. True

RSS Feeds are supported on the Force.com Sites? A. True B. False

A. True

Can Data Loader be run through the Command Line? A. Yes B. No

A. Yes

Can a user create their own Tab Style while creating the Custom Tabs? A. Yes B. No

A. Yes

Can an opportunity that already triggered a Big Deal Alert and then fell below the threshold trigger a second Big Deal Alert if it crosses that threshold again. A. Yes B. No

A. Yes

Can using of SoftPhone in multiple browsers simultaneously lead to data being not saved properly? A. Yes B. No

A. Yes

Is it possible in Salesforce.com to Stop the Roll Up of Role Hierarchy for Custom Objects? A. Yes B. No

A. Yes

Which of these is not a standard profile? Select the one correct answer. A. Developer B. Contract Manager C. Read only D. Solution Manager

A. developer

The number of Lookup relationship that an object can have are A. 1 B. 2 C. 25 D. 300

C. An object can have maximum of 25 Lookup relationship

Which report type is used to group rows and columns of data and show their subtotals. Select the one correct answer. A. Summary B. Matrix C. Tabular D. Detailed

B.

How many different Master - Detail relationships can exist on the detail object side? A. 1 B. 2 C. 3 D. 4

B. 2

How many components may be on a dashboard? A. 10 B. 20 C. 30 D. 40

B. 20

How many Criteria based sharing rules per object can be created? A. 10 B. 50 C. 100 D. 200 E. No Limit

B. 50

Which of the following is correct about custom fields in Salesforce. Select one correct answer. A. If a field is set as required it must be entered in the Salesforce generated pages, however it may not be specified when entering information via Force.com API B. A required field is always present in an edit page C. A unique field is always present in an edit page D. A unique field increases report and SOQL performance

B. A field set as required must always be present in the edit page.

A Multitenant architecture is A. A separate instance of a software application and supporting infrastructure is used by each customer, or tenant B. An application model in which all users and apps share a single, common infrastructure and code base. C. Both A & B D. None of the above

B. An application model in which all users and apps share a single, common infrastructure and code base.

What is a collaborative app? A. An application that automates business process which eliminates unnecessary touch points B. An application with data and services that are shared by multiple users in different locations C. Data base specially designed for storing data in the form of spreadsheets D. None of the above.

B. An application with data and services that are shared by multiple users in different locations

The number of master detail relationship that an object can have are A. 1 B. 2 C. 25 D. 300

B. An object can have maximum of 2 Master detail relationship

_________ data is exposed in the application cache, which enables efficient access without the cost of repeated queries to the database. A. Object B. Custom Setting C. Apex D. Junction Object E. Change Set

B. Custom Setting

What permission is required for users to see the Force.com Quick Access menu? A. Development mode user permission B. Customize application permission on profile C. Only System Administrators can see in development objects

B. Customize application permission on profile

Which function records the database operations, system processes, and errors that occur when executing a transaction or while running unit tests? A. System Log B. Debug Log C. Monitoring D. Setup Audit Trail

B. Debug Log

What minimum level of access is required on account to add a task to it? A. Read B. Edit C. Delete D. Any of the above

B. Edit

Default values are available for standard text fields. A. True B. False

B. False

Default values can be set on the Dependent Picklist Fields? A. True B. False

B. False

It is possible to share a custom object record manually. A. True B. False

B. False

Notes and attachments marked as private via the Private checkbox are accessible only to the person who attached them and to the person above them in the role Hierarchy. A. True B. False

B. False

Report charts are included in emailed reports. A. True B. False

B. False

System log records database operations, system processes, and errors that occur when executing a transaction or while running unit test. A. True B. False

B. False

When you delete an analytic snapshot, the source report and target object are also deleted? A. True B. False

B. False

You must be a user of salesforce.com in order to receive an email notification in the case escalation process. A. True B. False

B. False

If you schedule a report to run on the 31st day of every month, then the report runs on A. Last Day of Every Month B. Last Day of those Months which have 31 Days C. Last Day of those Months which have 31 Days for rest of the months Report is scheduled on 1st D. No such criteria is available for Scheduling

B. Last Day of those Months which have 31 Days

Which report type does not support analytical snapshot? Select the one correct answer. A. Summary B. Matrix C. Tabular D. Detailed

B. Matric report cannot be used to generate Analytical snapshot.

In a recruitment application, a dashboard component needs to be built that will display total number of positions. Which dashboard component can be used to implement this feature? Select the one correct answer. A. Gauge B. Metric C. Table D. Chart E. VisualForce page

B. Metric dashboard type is used to display

A user has Read only Access to the account, will he be able to attach the File in the Attachment related list on a record? A. Yes B. No C. Yes,If the file is less then 5 MB D. Yes, if file is more than 5 MB

B. No

After creating a custom report type, can the user change the Primary object associated with that Report Type? A. Yes B. No C. Depends on the Profile Permissions D. No Concept of Primary Object in Custom Report Type

B. No

Can Dashboard Components be retrieved from Recycle Bin on deletion? A. Yes B. No

B. No

Is it possible in Salesforce.com to Stop the Roll Up of Role Hierarchy for Standard Objects? A. Yes B. No

B. No

What is the Model of the MVC design? A. Requests from the model the information that it needs to generate an output representation. B. Notifies its associated views and controllers when there has been a change in its state. C. Used to perform the actions whenever users interact with visual force. D. None of the aboveNotifies its associated views and controllers when there has been a change in its state.

B. Notifies its associated views and controllers when there has been a change in its state.

Where are Visualforce pages composed? A. On the web B. On the server C. At home D. At work

B. On the server

Use the _______ picklist to categorize your products. A. PriceBook B. Product Family C. Category D. Opportunity

B. Product Family

For approval process what groups can you have? A. Profiles B. Roles and Subordinates C. Public Groups D. Active Sales team members E. None of the above

B. Roles and Subordinates

____________ represent the best estimate of how much revenue you can generate A. Opportunity Pipeline B. Sales Forecast C. Lead Pipeline D. Lead Conversion Ratio

B. Sales Forecast

Which layout needs to be changed to change the buttons that display on list views? A. Page Layout B. Search Layout C. List view Layout D. Mini page Layout E. Record Type Layout

B. Search Layout

Name 3 things that facilitate productive group collaboration. A. Chatter, Public Groups, Permission Sets B. Security & sharing model, WFR, Approval Processes C. Permission Sets, Sharing rules, Field Updates D. Email Templates, Chatter, VDR

B. Security & sharing model, WFR, Approval Processes

What does checking the ""Email Analytics Snapshot"" button do? A. Sends a snapshot of the report B. Sends an email notification the source report ran C. Both A & B

B. Sends an email notification the source report ran

A Force.com developer needs to execute Apex code snippet and check the resource usage. Which feature of the platform can be used to support this requirement. Select the one correct answer. A. Debug Log B. System Log C. Setup Audit Trail D. Field level security

B. System Log can be used to run code snippets.

Name the prefix used by standard VisualForce markup tags. Select the one correct answer. A. vf B. apex C. c D. s

B. The prefix apex is used for standard VisualForce markup tags.

If the Time Zone field on your Organization is IST and the Time Zone field on your user record is set to Pacific Standard Time (PST), and you schedule a report to run every day at 2:00 PM then A. The report runs every day at between 2:00 PM and 2:29 PM IST B. The report runs every day at between 2:00 PM and 2:29 PM PST C. The report runs every day at between 2:00 PM and 2:29 PM for the Time Zone of Administrator D. Both A & B

B. The report runs every day at between 2:00 PM and 2:29 PM PST

If a record type is changed for a specific profile to one not viewable by the profile: A. User will not be able to see the record anymore B. User will be able see the record, but not create new records C. The user will retain permissions and only new users w/ profile will not be able to view record

B. User will be able see the record, but not create new records

Vlookups only work in: A. Workflow Rules B. Validation Rules C. Assignment Rules D. None of the above

B. Validation Rules

Custom Tabs are part of ______ in (Model - View - Controller) Relationship? A. Model B. View C. Controller

B. View

In the statement below, controller refers to what type of controller? Select the one correct answer. <apex:page controller=""AccountController""> A. Standard Controller B. Custom Controller C. Controller Extension D. Specific Controller

B. controller attribute is used for Custom Controller

Which report type does not allow generation of charts? Select the one correct answer. A. Summary B. Matrix C. Tabular D. Detailed

C.

How is the expected revenue calculated in the opportunity? A. Amount multiplied by the total price of all opportunity line items B. The sales price on any line item times the probability of the opportunity C. Amount multiplied by the probability D. Amount multiplied by the discount percent

C. Amount multiplied by the probability

Which feature is used to Report on Historical Data? A. Reports B. Dashboards C. Analytical Snapshot D. Mobile Lite E. Entitlements

C. Analytical Snapshot

You cannot define mini page layouts for A. Case Layout B. Solution Layout C. Close Case Layout D. Account Layout E. User layout

C. Close Case Layout

What permission is required for a user to see an object marked as ""In Development""? A. Development mode user permission B. Edit on custom object C. Customize application permission on profile D. Only System Administrators can see in development objects

C. Customize application permission on profile

What is a data-centric app? A. An application that automates business process which eliminates unnecessary touch points B. An application with data and services that are shared by multiple users in different locations C. Data base specially designed for storing data in the form of spreadsheets D. None of the above.

C. Data base specially designed for storing data in the form of spreadsheets

How can a developer get a Custom Object added to the quick create list A. Add the object through home page component settings B. It is added automatically C. Expose a custom tab for the custom object D. Enable the quick create on the user profile

C. Expose a custom tab for the custom object

Which of the following can not be done by Salesforce SoftPhone? A. Transfer callsInitiate B. Conference calls C. Record Calls D. Attach records to calls E. Generate automatic call logs

C. Record Calls

Which is the first step when creating reports? Select the one correct answer. A. Select report name B. Select object on which report needs to be generated C. Select type of report D. Select columns to be displayed

C. Select type of report.

While debugging an issue you realize that the field type of an object has changed. You need to find out more details about this change. Which feature of the platform can be used to support this requirement. Select the one correct answer. A. Debug Log B. System Log C. Setup Audit Trail D. Field level security

C. Setup Audit Trail can be used to track changes made in the configuration.

Which report type is not available for summary formulas? A. Matrix B. Joined Report C. Tabular D. Summary E. None of the above

C. Tabular

Before a code can be deployed on production what percentage of test coverage must be achieved. Select the one correct answer. A. 25% B. 50% C. 75% D. 100%

C. The code must get a test coverage of 75% before it can be deployed.

When designing an application, a developer needs to make a field editable to all profiles. In field level security what settiings should be used in this situation. Select the one correct answer. A. Disable Visible and Read-Only B. Disable Visible but Enable Read-Only C. Enable Visible but Disable Read-Only D. Enable Visible and Read-Only

C. To make a field editable, enable Visible but disable Read-Only.

Automate data load from SFDC at 2:00 AM. How? A. Schedule manager of Import Wizard. B. CLI of Data Loader C. Use Export Scheduler of Data Loader GUI D. Use Data Export Service

C. Use Export Scheduler of Data Loader GUI

What is Controller of the MVC design? A. Requests from the model the information that it needs to generate an output representation. B. Notifies its associated views and controllers when there has been a change in its state. C. Used to perform the actions whenever users interact with visual force. D. None of the above

C. Used to perform the actions whenever users interact with visual force.

Which of the following is related to View layer in MVC Model? A. Workflow Rules B. Validation Rules C. Visual force Pages D. Custom Objects E. Apex Class

C. Visual force Pages

What is the maximum size of a VisualForce page? Select the one correct answer. A. 1 MB B. 5 MB C. 15 MB D. There is no limit on the size of a VisualForce page

C. VisualForce pages must be upto 15 MB.

Under what circumstances would the sharing button to be enabled on a detail view for a record. A. A developer has added the button to the page layout B. When record sharing is enabled in the user profile C. When record sharing is set to public read only or private for the object D. When record sharing is set to public read/write for the object

C. When record sharing is set to public read only or private for the object

Is it possible to set the System Fields like Created date to any Date during the Initial Load? A. Yes B. No C. Yes, A Case needs to be raised with Salesforce.com D. Yes, Appropriate Profile Permission needs to be given

C. Yes, A Case needs to be raised with Salesforce.com

A developer wants to extract data from Salesforce nightly 2:00 AM, what should he do? A: I can not remember this option B: Import Wizad C: Dataloader command line D: Export Scheduler in Dataloader GUI

C: Dataloader command line

How will the formula look like if You want to calculate the date/time difference between created date? A: Today () - Datevalue (Created date) B: Created Date - Now () C: Now () - Created Date

C: Now () - Created Date

Which two features are supported by Salesforce in developer mode? Select the one correct answer. A. Developer mode allows a default user interface to be created for objects. B. Developer mode provides a debugger that is used to perform step by step execution. C. Developer mode allows developers to create dashboards from reports. D. Developer mode allows split screen where user can view Visual Force editor and user interface together E. Developer mode allows developers to create new pages by just entering the page name.

D, E. Last two statements about developer mode are correct.

What is the maximum size of a VisualForce page? A. 2MB B. 20MB C. 5MB D. 15MB

D. 15MB

Which one the following Boolean function is not used in the advanced filter conditions in Reporting? A. AND B. OR C. NOT D. All three are Used

D. All three are Used

Universal Recruiters uses Force.com as its recruitment platform. The Sales VP of Universal Recruiters will like a report that will display progress in recruitment across six months. Which reporting component can be used to implement this feature? Select the one correct answer. A. Summary B. Matrix C. Tabular D. Analytic Snapshot

D. Analytic Snapshot feature of Salesforce is used to perform trend analysis over a period of time.

Which of the following is not a valid return type of a custom formula. Select one correct answer. A. Date B. Decimal C. Text D. Array

D. Array is not a valid return type of custom formula.

How many Asset records can be imported via Import Wizard? A. 500 B. 5,000 C. 50,000 D. Asset Records cannot be imported via Import Wizard

D. Asset Records cannot be imported via Import Wizard

What happens when a parent record is deleted in the Parent Child model having a Lookup Relationship between Parent - Child Objects? A. Child records are also deleted B. Shows an error C. Cant delete the record D. Child records are not deleted

D. Child records are not deleted

Which one does NOT apply to Custom Formula Fields: A. Custom Formula Fields can reference other formula fields B. Custom Formula Fields can reference standard fields C. Custom Formula Fields can reference custom fields D. Custom Formula Fields can calculate across objects

D. Custom Formula Fields can calculate across objects

Which of the following cannot be used to build a complete Custom Tab. Select one correct answer. A. Display an external web page B. Display data using a VisualForce page C. Show data from a custom object using the native user interface D. Display the approval process using an Apex page

D. Custom tabs can be used to display a VisualForce page, data from an external page, data from a custom object.

Second record gets created D. Error is reported

D. Error is reported

In Universal Recruiter application a developer realizes that the Salary field of an employee is set up to an incorrect value. The developer needs to find out who has set this new value to Salary field. Which feature of the platform can be used to support this requirement. Select the one correct answer. A. Debug Log B. System Log C. Setup Audit Trail D. Field History Tracking

D. Field History Tracking can be used to find out changes in field values.

An organization needs to create a public website that displays data from Salesforce.com organization without user registration. Select one correct answer. A. Apex B. Triggers C. Salesforce Knowledgebase D. Force.com sites E. Formula

D. Force.com sites is used to build public facing sites.

Which of these functions is available in formulae field. Select the one correct answer. A. ISCHANGED B. ISNEW C. REGEXC D. IF E. VLOOKUP F. All of these functions are available in a formula field

D. IF function is available in the formula field. Other functions are not available in the formula field.

Which of the following is true about Roll-up summary fields? Select one correct answer. A. Roll-up summary can only be set on the parent of a Master-Detail or Lookup relationship. B. Roll-up summary can be used to compute SUM,MIN,MAX,AVG over a set of records C. The results of the roll-up summary is displayed on the child in a master-detail relationship. D. Roll-up summary fields are read only.

D. Only option D is correct. Rollup summary field can only be applied in Master-detail. Hence A is incorrect. AVG is not supported in Rollup summary fields.Rollup Summary is defined at the parent level of a Master-Detail relationship.

Custom objects in sites have which kind of permission? A. Read Only B. Read and Create C. Read, Create and Edit D. Read, Create, Edit and Delete

D. Read, Create, Edit and Delete

Which of the following can not be translated via Translation Workbench? A. Custom Report Type B. Standard Field Help C. Validation Error Message D. Report Name

D. Report Name

Universal Recruiters wants to make access to records in such a way that all managers should be able to access records that are accessible to their team members. Which feature of Force.com's security should be used to implement this requirement. Select the one correct answer. A. Object level access to profiles B. Field level access to profiles C. Organization wide defaults D. Role hierarchy E. Sharing rules F. Manual sharing

D. Role Hierarchy feature of Force.com platform can be used to implement this functionality.

Name the language Force.com uses to support full-text search in objects. Select the one correct answer. A. SQL B. VisualForce C. SOQL D. SOSL

D. Salesforce Object Search Language

Which of these is not a valid report type. Select the one correct answer. A. Summary B. Matrix C. Tabular D. Detailed

D. Salesforce does not have a report type named Detailed.

In Salesforce what is the maximum number of fields that can be added to an object? Select the one correct answer. A. There is no such limit on the number of fields B. 100 C. 200 D. 500

D. There can be a maximum of 500 fields in custom objects.

How many characters are there in the Salesforce case-insensitive id field of an object? Select the one correct answer. A. id field is not mandatory B. The field length is customizable C. This depends on the version of Salesforce D. 18

D. object id field can be 15 character case-sensitive or 18 character case-insensitive.

Which of the following represent correct syntax to display first name from global variable user? Select the one correct answer. A. {User.FirstName} B. {!User.FirstName} C. $User.FirstName D. {!$User.FirstName}

D. {!$User.FirstName} is the correct syntax to access first name.

Change sets can be deployed: A. From Sandbox to Production B. From Sandbox to Sandbox C. From Production to Sandbox D. A and C E. All of the Above

E. All of the Above

With combination charts, you can: A. Add a line to an existing line, vertical column, grouped vertical column, or stacked vertical column chart B. Add a cumulative line to an existing line cumulative chart C. Add up to three columns to a vertical column chart D. Add up to three bars to a horizontal bar chart E. All of the Above

E. All of the Above

Which of the following represents controller in Model - View - Controller Model? A. Tabs B. Page Layouts C. Custom Fields D. Visual Force Pages E. Apex Classes

E. Apex Classes

Which of the following is not supported by Enhanced Page Layout editor. Select the one correct answer. A. Change the field name B. Add blank spaces C. Make a field required or read-only D. Add a new section E. Add a new custom field

E. Enhanced Page Layout editor cannot be used to create new fields.

A Field hidden from Field Level Security is available from? A. Search B. Reports C. Page Layout D. Console E. None of the Above

E. None of the Above

Universal Recruiters have an object that they use to store all US zip codes and corresponding states. They want to ensure that the zip code and state specified by users are correct. Which function could be used to implement this feature? Select the one correct answer. A. REGEX B. EXPRMATCH C. ISNUMBER D. PRIORVALUE E. VLOOKUP

E. VLOOKUP is used to return the value for a unique key in an object.

Universal Recruiters uses an external system for keeping track of exits from the organization. The CEO of the organization will like to view information about exits in the Salesforce application that Universal Recruiters uses. Which dashboard component can be used to implement this feature? Select the one correct answer. A. Gauge B. Metric C. Table D. Chart E. VisualForce page

E. VisualForce pages can be used to draw dashboard components that extract data from another source.

Which of the following is part of file storage? A. Article Types B. Email messages C. Google Docs D. Tasks E. All of the above F. None of the Above

F. None of the Above

External ID on a record is always unique a. True b. False

False, an external ID should be unique, but it doesn't have to be

What are Apex Governor Limits?

Governor limits are runtime limits enforced by the Apex runtime engine. Because Apex runs in a shared, multitenant environment, the Apex runtime engine strictly enforces a number of limits to ensure that code does not monopolize shared resources. Types of limits that Apex enforces are resources like memory, database resources, number of script statements to avoid infinite loops, and number of records being processed. If code exceeds a limit, the associated governor issues a runtime exception.

Do governor limits apply to sandbox instances?

Governor limits do apply to all Salesforce instances (trial, developer, production or sandbox environments). However code coverage and successful execution of test classes is only enforced when deploying to a production environment.

What will happen if the Account is deleted?

If the Account is deleted then Contact, Opportunity will also be deleted from Salesforce which are related to that Account.

Where is the option of the report for the "Custom Object with related object" and what are the condition to generate related reports?

If the parent object is the standard object provided by the salesforce like "Account", "Contact" then the report will be in there section with related custom object. If both objects are the custom then the report will be in "Other Reports" Sections. Following are the conditions to get the report of related objects: On both the objects, Reports option must be enable. The relationship between both of them must be "Master - detail relationship".

What is Apex ?

It is the in-house technology of salesforce.com which is similar to Java programming with object oriented concepts and to write our own custom logic.

Which of the following is not a part of a Force.com app. Select one correct answer. A. Notes B. Tab C. Links D. Forms

Key element of a Salesforce app are Tab, Links and Forms.

How many types of the relationship fields available in Salesforce?

Master Detail, Many to Many, Lookup, Heirarchical, Self-Relationship

What is Roll up summary field in Salesforce?

Roll up summary field in salesforce calculates the Count, Sum, Min or Max of particular field of any child record. Thus, we can say that Roll up summary field can only be created on Master object.

What is S-Control ?

S-Controls are the predominant salesforce.com widgets which are completely based on Javascript. These are hosted by salesforce but executed at client side. S-Controls are superseded by Visualforce now.

If one object in Salesforce have 2 triggers which runs "before insert". Is there any way to control the sequence of execution of these triggers?

Salesforce.com has documented that trigger sequence cannot be predefined. As a best practice create one trigger per object and use comment blocks to separate different logic blocks. By having all logic in one trigger you may also be able to optimize on your SOQL queries.

What are the 3 types of Visualforce controllers?

Standard Controllers Custom Controllers Controller Extensions

What are the 3 types of Visualforce controllers?

Standard Controllers - Custom Controllers - Controller Extensions

What are the types of email templates available in salesforce.com?

Text, HTML with Letterhead, Custom HTML, Visualforce

How to delete the users data from Salesforce?

To delete the Users Data go to Setup | Administration Setup | Data Management | Mass Delete Record, from there select the objects like Account, Lead etc and in criteria select the users name and delete all records of that user related to particular object

What is the difference between trigger.new and trigger.old in Apex - SFDC?

Trigger.new : Returns a list of the new versions of the sObject records. / Note that this sObject list is only available in insert and update triggers, and the records can only be modified in before triggers. [Note that this sObject list is only available in update and delete triggers.] Trigger.old: Returns a list of the old versions of the sObject records.

When creating a workflow rule, which action requires a formula as the rule criteria? a. Checking if the current user's profile is System Administrator b. Checking if the value in a field has changed c. Checking if the record was modified today d. Checking if the status of a record is new

b. Checking if the value in a field has changed

To create a new VisualForce page HelloWorld in developer mode, which URL should be appended to server address? Select the one correct answer. A. /HelloWorld B. /vf/HelloWorld C. /apex/HelloWorld D. /home/HelloWorld

VisualForce page address appears like /apex/HelloWorld.

What is a Visualforce Page ?

Visualforce is the new markup language from salesforce, by using which, We can render the standard styles of salesforce. We can still use HTML here in Visualforce. Each visualforce tag always begins with "apex" namespace. All the design part can be acomplished by using Visualforce Markup Language and the business logic can be written in custom controllers associated with the Page.

How can you provide the User Login (Authentication) in Public sites created by Salesforce.

We can provide the authentication on public sites using "Customer Portal".

Will Visual force still supports the merge fields usage like S-control ?

Yes. Just like S-Controls, Visualforce Pages support embedded merge fields, like the {!$User.FirstName} used in the example.

Where to write Visualforce code ?

You can write the code basically in 3 ways. [setup->App Setup->Develop->Pages and create new Visulaforce page.], [Setup -> My Personal Information -> Personal Information -> Edit check the checkbox development mode. When you run the page like this, https://ap1.salesforce.com/apex/MyTestPage. you will find the Page editor at the bottom of the page. You can write you page as well as the controller class associated with it, there it self.], [Using EclipseIDE you can create the Visulaforce page and write the code.]

Universal Containers wants Job Applications to generate a unique number auto populated every time a new record is created. How can a developer accomplish this declaratively? a) using custom auto number field b) using custom master-detail field c) using custom read only field d) using lookup relationship field

a) using custom auto number field

How many master-detail relationship can be created on one object? a. 2 b. 1 c. 4 d. 3

a. 2

In a custom order management application, universal containers requires that the product name and product code are consistent according to a custom object set up with valid product name and product code combinations. When a user enters an order, the system should check to ensure that the product name and product code entered are valid Which feature would a developer use to accomplish this? a. A validation rule with the VLOOKUP function b. A validation rule with the REGEX function c. A formula field with the IF function d. A formula field with the VALIDATE function

a. A validation rule with the VLOOKUP function

What occurs in an upsert operation if the external ID is matched on more than one record? a. An error is reported b. Duplicate records will be created with matching external Ids c. The upsert operation fails d. Only the first matching record will be updated

a. An error is reported

A developer wants to report on trends in the data. Which feature of the Force.com platform would a developer use to accomplish this? a. Analytic Snapshot b. Field History c. Summary Report d. Matrix Report

a. Analytic Snapshot

Which scenario requires Apex to automate the real-time business logic? a. As a user saves a new order (a custom object), the quantity and products on the order are checked against stock ( a custom object), then the warehouse that the product will ship from on the order record is populates. b. When a user creates a new Time Off Request record ( a custom object) and clicks Submit for Approval c. When a user enters a State and Zip Code into custom fields on a Candidate custom object, it must be check custom object to ensure that the Zip Code entered does exist in the State entered. d. When a user saves a New Hire record ( a custom object), an outbound message is automatically sent with information to an external HR system

a. As a user saves a new order (a custom object), the quantity and products on the order are checked against stock ( a custom object), then the warehouse that the product will ship from on the order record is populates.

In a lookup relationship, what happens to the child records if the parent record is deleted? a. Child records are not deleted b. A subset of the child records is deleted c. Child records are deleted d. Parent record deletion fails

a. Child records are not deleted

Universal Containers tracks Candidates as a custom object in a recruiting application. On a candidate record, the city entry field must be in the state selected in the state field. How would a developer meet this requirement using declarative (point and click) means? a. Create a dependency on the Address field that ensures only valid cities are selected for a given state b. Create a Formula field on the address object that looks up the state for the entered city c. Create a validation rule that checks the city entered against an object to validate the state for the entered city d. Create a Workflow outbound message that sends city and state information to an external global database of known states

a. Create a dependency on the Address field that ensures only valid cities are selected for a given state

Which field is available as part of the translation workbench for a validation rule? a. Error Message b. Description c. Rule Criteria d. Formula

a. Error Message

In a recruiting allocation, salary requirements are tracked in a custom object. An approval process is built that will route all salary requirements less than 100,000 USD to the recruiter for automatic approval. In the same approval process, salary requirements greater than 100,000 USD are routed directly to the vice president of human resources. What must be done to initiate the approval process that will route the appropriate records to the vice president for approval? a. Execute the approval process by clicking on the Submit for Approval button on the record's detail page layout b. Create a workflow rule that will evaluate salary amount and trigger the approval process if the salary is greater than 100,000USD c. Create a workflow rule that evaluate salary amount and send a notification to the vice president if the salary is greater than 100,000USD d. Save the record so it will automatically be entered into the approval process

a. Execute the approval process by clicking on the Submit for Approval button on the record's detail page layout

In a custom recruiting application, custom objects are used to track Positions and Job Posting site (e.g. Each position is typically posted to many job posting sites. Which additional object is required to relate Positions and Job Posting sites do that a user can report or associated with a give Posting site? a. Junction object b. Parent object c. Lookup object d. Standard object

a. Junction object

You can upgrade your Apps of the following types: a. Managed Packages b. Unmanaged Packages c. You can't upgrade the Apps once published d. Installed Packages

a. Managed Packages

What can cross-object formulas reference? a. Parent object records only b. Other records of the same object c. Both parent and child object records d. Child object records only

a. Parent object records only

In which Salesforce enviroments will the Force.com record IDs be identical? a. Production and Full Copy Sandbox only b. Production and Full Copy Sandbox, and Developer Sandbox c. Force.com record IDs are never identical d. Production and Developer Sandbox only

a. Production and Full Copy Sandbox only

Using a formula field how would a developer calculate the number of days since a record has been created? The CreatedDate field is a DateTime type field. a. TODAY() - DATEVALUE(CreatedDate) b. NOW() - DATEVALUE(CreatedDate) c. TODAY() - CreatedDate d. CreatedDate - TODAY()

a. TODAY() - DATEVALUE(CreatedDate)

Custom objects automatically have some standard fields a. True b. False

a. True

For dynamic dashboards, Running user can be set as the logged-in user a. True b. False

a. True

Once a currency is added to an org's list of supported currencies, it can't be deleted from the admin's list of currencies, even when it's deactivated a. True b. False

a. True

Search layout is the default layout for related lists, unless properties have been modified on other objects' page layouts a. True b. False

a. True

The create publisher action runs validation rules and required field settings a. True b. False

a. True

When choosing a style for a custom object tab, a developer can create a custom style a. True b. False

a. True

You cannot reference cross-object formula fields in roll-up summary fields a. True b. False

a. True

Users X and Y need to see the same candidate record. For security reasons, user Y should not be able to report on the Email Address field on the record. How would a developer meet this requirement? a. Use field-level security to make the email address visible to user X but not user Y b. Use a sharing rule to make the email address only visible to user X c. Use a custom visualforce page to make the email address visible to user X but not user Y d. Use page layouts to make the email address visible to user X but not user Y

a. Use field-level security to make the email address visible to user X but not user Y

where the default app in user resides? a. user's profile b. permission sets c. profiles settings d. sharing settings

a. user's profile

What does API stand for?

application programming interfaces

Object X has a lookup field to Object Y. X needs to display a text value from a Text field on Y. To ensure data integrity, how would a developer implement this? a. Create a roll-up summary field on Object X but that retrieves the value from Y b. Create a cross-object formula field on Object X that retrieves the value from Y c. Create a text field on Object X and use Apex to populate the value d. Create a text field on Object X and use a workflow rule to fill in the value upon the creation of X

b. Create a cross-object formula field on Object X that retrieves the value from Y

Object B has a lookup relationship to Object A. Object C has a lookup relationship to Object A. A developer needs to run a report on A records with C records. How can the developer accomplish this? a. Create a summary report with a custom summary formula summarizing by A, then B, then C b. Create a custom report type that includes A with B with C c. Create a matrix report with A and B records as column headings and C records as row headings d. Run a report using the standard report type: A with B with C

b. Create a custom report type that includes A with B with C

Universal containers tracks reviews as a custom object in a recruiting application. An interview score is tracked on each review record and should be numerical, so that hiring managers can perform score calculations. The scores should be restricted to integer values 1 through 5 and displayed as a set of radio buttons. How can a developer meet this requirement? a. Create a formula field that displays the interview score as a set of radio buttons b. Create a visualforce component to display the interview score as a set of radio buttons c. Create the Interview Score field with a data type of radio button d. Create the interview score field as a picklist, displayed as a radio button on the pane layout

b. Create a visualforce component to display the interview score as a set of radio buttons

What is not a component of a custom Force.com application? a. Default landing tab b. Data warehouse c. Custom tab d. Custom object

b. Data warehouse

A read-only or required field will apply to calls made in the API a. True b. False

b. False

If one element of a change set fails to deploy, it will deploy the rest, leave the one element out, and produce an error page a. True b. False

b. False

Junction object is a Custom Object with three master detail relationships a. True b. False

b. False

Required fields are not required when using the API but enforced through the UI a. True b. False

b. False

Rollup summary fields are not available for standard objects a. True b. False

b. False ( it's available for account/oppty

Which portion of Model-View-Controller paradigm is represented in Force.com as a standard or custom object? a. Controller b. Model c. View

b. Model

Universal Containers requires that some employees are able to view and edit records of a custom object called Positions, but no users can delete them How can Universal Containers accomplish this goal? a. Remove the Delete Access for positions from all user roles b. Remove the Delete Permission for positions from all profiles c. Set the Organization wide default for positions to Read-Only d. Assign the Read-Only profile to all users

b. Remove the Delete Permission for positions from all profiles

In a custom object defect tracking application, a custom object called Bug is used to track defects. The bugs often have a relationship to bugs in a parent-child fashion Which relationship should a developer choose to model the interdependency between bugs? a. Hierarchical b. Self c. Master-detail d. Many-to-many

b. Self

no action required b. Set an action to lock the record upon submission c. Create a Workflow field update action to make the page layout Read-only d. Develop a sharing rule that sets the record to Read-only

b. Set an action to lock the record upon submission

A developer wants to build an application on the Force.com platform. The data model, the users needing access to the application, and the application business logic have been considered. The report and dashboard requirements have not been considered. Which statement is TRUE about building the application? a. The dashboard will not be visible to management users b. The data model may not support the required reports/ required security controls c. The data model may not support the required business logic d. The developer will not be able to load application data

b. The data model may not support the required reports/ required security controls

A developer is loading data, in CSV format, into a custom application from a legacy system. The user object, and positions and job applications owned by named users into related custom object. Which obstacle will the developer encounter when using the import wizard? a. The import wizards cannot import data from CSV files b. The import wizards do not support the User object c. The import wizards do not support custom object d. The import wizards do not import files to specify record owner

b. The import wizards do not support the User object

Users X and Y need to see the same candidate record. For security reasons, user Y should NOT be able to view and read address field on the record. How would a developer meet this requirement? a. Use a sharing rule to make the email address only visible to user X b. Use field-level security to make the email address visible to user X but not user Y c. Use page layouts to make the email address visible to user X but not user Y d. Use a custom Visualforce page to make the email address visible to user X but not user Y

b. Use field-level security to make the email address visible to user X but not user Y

A developer need to perform an automated extract of data from Salesforce nightly at 2:00 a.m. How would the developer accomplish this? a. Use the Export Scheduler of the Data Loader's GUI b. Use the Command-line interface of the Data Loader c. Use the Data Export service to perform a nightly extract d. Use the Schedule Manager of the import wizard

b. Use the Command-line interface of the Data Loader

Encrypted fields allow for masking data for all users except those with the _____permissions a. Read all data b. View all Data c. Modify all data d. Administrator permissions

b. View all Data

Which type of custom field can be an external ID? a. Text, Number or Formula fields only b. Custom field of any type c. Text, Email. or Number fields only d. Phone number, Email. URL and Text-based fields

c. Text, Email. or Number fields only

Two master-detail relationship need to be created on Object x. The first master-detail relationship created is the primary master, and the second is Secondary master. What is an effect of the primary relationship on x? a. There will be no effect on x b. X will inherit the look and feel of the primary master object c. ma are limited to the primary relationship d. The primary relationship cannot be deleted

b. X will inherit the look and feel of the primary master object

What is true about a cross-object formula field for a Master-Detail relationship? a. You can only create a cross-object formula field on the parent object b. You can only create a cross-object formula field on the child object c. You can create a cross-object formula field on both the parent and child object d. A cross-object formula field is not available for a Master-Detail relationship

b. You can only create a cross-object formula field on the child object

________lookup relations are allowed per object a. 10 b. 20 c. 25 d. 40

c. 25

A developer has received confirmation that salesforce.com has enabled insertable system audit fields for records. Which ability is now enabled when using the data loader? a. Ability to insert account records setting the IsDeleted field of each record b. Ability to insert account records settings the $MarkSync field of each record c. Ability to insert account records settings the CreatedDate field of each record d. Ability to insert account records settings the SystemModStamp field of each record

c. Ability to insert account records settings the CreatedDate field of each record

Universal Containers has built a recruiting application on the Force.com platform. In the application, recruiting managers need to see how the number and status of candidates in the pipeline changes month over month. which feature enables this land of analysis? a. Custom summary formulas b. Dashboards c. Analytic snapshots d. Custom report types

c. Analytic snapshots

What can be viewed using the process visualizer? a. Support processes b. Sales processes c. Approval processes d. Workflow Rule

c. Approval processes

A developer would like to enable end users to filter the data displayed on the related list of an object detail page How could a developer accomplish this? a. Customize the search filter fields layout for that object b. Enable Advanced Search on the object's related list c. Create a Visualforce page to replace die object detail view d. Configure the object's related list to add a filter

c. Create a Visualforce page to replace die object detail view

set organization-wide defaults t Private for Position and for Salary

c. Create a lookup relationship between Position and Salary

Universal Containers tracks Positions as a custom object in a recruiting application. All positions with a priority of critical should NOT be open for more than two weeks. If a position remains open for more than 14 days, the priority should be re-examined. How would a developer automate this process? a. Create a workflow action to clone the position, assigned to the owner of the position record, that is due 14 days after record creation. b. Create a validation rule that compares today's date and the record's creation date to determine if the difference is greater than 14 days c. Create a time-dependant workflow action that sends an email to the recruiter if the position is still open 14 days after record creation d. Create a time-dependant workflow action that updates the position status to closed 14 days after record creation

c. Create a time-dependant workflow action that sends an email to the recruiter if the position is still open 14 days after record creation

Universal containers would like to enforce a new policy for job offers. Any job offer with a salary greater than $50,000 is hiring manager. Any job offer with a salary greater than $100,000 is approved first by the hiring manager, then by the senior manager. After these approvals, all offers must finally be approved by the VP of HR. How would a developer meet this requirement? a. Workflow b. Parallel Approvers c. Dynamic Approval Routing d. Approval Processes

c. Dynamic Approval Routing

Which API can be used to create the data model? a. Force.com API b. Force.com Single Sign-on API c. Force.com Metadata API d. AJAX toolkit for Force.com

c. Force.com Metadata API

Which standard profile has the ""View Encrypted Data"" permission by default? a. Solution manager profile b. System administrator profile c. No profile has the permission active by default d. Standard user pro file

c. No profile has the permission active by default

A custom object has an organization-wide default setting of private with Grant Access Using Hierarchies check box turned off. Which users can select the Sharing button on record for that object? a. The record owner, a user shared to the record, any user above the record owner in the role hierarchy administrator profile b. The record owner, a user above the record owner in the role hierarchy, and a user with the system c. Only the record owner and a user with the System Administrator profile d. The record owner, a user with the System Administrator profile, and a user shared to the record.

c. Only the record owner and a user with the System Administrator profile

A group of executives has requested a convenient way to see daily metrics without having to log in to Salesforce. How would a developer accomplish this? a. Set the user's home page layouts to include a dashboard b. Create a workflow rule that sends a link to the dashboard in an email c. Schedule a dashboard for daily refresh and email distribution d. Create a series of daily recurring events providing the dashboard link

c. Schedule a dashboard for daily refresh and email distribution

Upon final rejection of a record that has been through an approval process, which action is NOT allowed? a. Locking the record from being edited b. Sending an email to the record owner c. Sending the record to the recycle bin d. Creating a task for the record owner

c. Sending the record to the recycle bin

Positions is a custom object in a recruiting application built on the Force.com platform. Department is a field on the Position object. Which type of report should a developer create to show hiring managers the number of positions grouped by department? a. Tabular b. Pivot c. Summary d. Analytic Snapshot

c. Summary

Positions and Job Applications are custom objects in a recruiting application. There is a lookup relationship on Job Applications to A developer wants to see a list of the top ten positions with the greater number of related job applications. Which dashboard component should the developer choose? a. Chart b. Metric c. Table d. Guage

c. Table

When performing an update with the Data Loader, the comma-delimited file must contain a column with which values? a. The profile names of the record owners b. The created time and date of the records c. The Force.com record ID values of the records d. The logical names of the records

c. The Force.com record ID values of the records

In a recruiting application, a custom Job Application object has a lookup relationship to a custom candidate object. The Candidate stores personal information, including name and email, about an individual applying for a job. The recruiting organization would like the candidate's name and email address on each related job application record as well. How can a developer meet this requirement? a. It is not possible for a developer to meet this requirement b. Use a validation rule to copy the name and email from the candidate record to the job application record c. Use a cross-object formula field to display the name and email from the candidate record to the job application record d. Use a cross-object assignment rule and field update action to copy the name and email from the candidate record to the job application record

c. Use a cross-object formula field to display the name and email from the candidate record to the job application record

A user can only see the fields A, B, and C on a record of Object X until the Stage field value on the record changes from New to working. Once the Stage held value is updated to Working and the record is saved, the user should be able to see fields A, B, C and D. How would an application developer configure this? a. Use multiple Visualforce pages b. Use workflow to change the field-level security c. Use workflow to change the record type d. Use validation rules to expose the field

c. Use workflow to change the record type

How many lookup relationships can there be per child? a. 10 b. 20 c. 15 d. 25

d. 25

What is a junction object? a. A standard object with two master-detail relationships b. A standard object with a master-detail relationship c. A custom object with a master-detail relationship d. A custom object with two master-detail relationships

d. A custom object with two master-detail relationships

How can users be allowed to create new records of Object Y from the Create New drop-down list in the sidebar? a. Enable the setting in the sidebar for each user b. Create s new sidebar component c. Edit the sidebar component to display Object Y d. Add Y's tab to the user's displayed tabs

d. Add Y's tab to the user's displayed tabs

In a custom recruiting application, Positions and Candidates are stored in separate custom objects, when looking at the details position record, a hiring manager need to see a list of recommended candidates instead of all candidates, based on matching How could a developer meet this requirement? a. Add a dashboard to the position page layout b. Add the candidates related list to the Position page layout c. Add a look up relationship to the Candidate object d. Add an inline Visualforce page on the Position page layout

d. Add an inline Visualforce page on the Position page layout

In a master-detail relationship, what happens to the child records if the parent record is deleted? a. Child records are not deleted b. A subset of the child records is deleted c. Parent record deletion fails d. Child records are deleted

d. Child records are deleted

Universal containers tracks Offers as an object in a recruiting application. Once an offer has been accepted by a candidate, there must be a value in a currency field called Actual Salary. How would a developer meet this requirement? a. Create a validation rule to make actual salary required each time the offer record is saved b. Create a field dependency between the salary amount and status of accepted c. Create a workflow field update to set the property of the actual salary field to required d. Create a validation rule to make sure that the actual salary is not null whenever an offer is accepted

d. Create a validation rule to make sure that the actual salary is not null whenever an offer is accepted

How would a developer meet this requirement? a. Create parallel workflow rules, requiring at least one executive team member to complete their assigned task b. Create multiple approval processes, one for each executive team member and utilize parallel submission c. Create an approval process with a step for each executive team member, allowing approval steps to be skipped d. Create an approval process which utilizes parallel approvers, but does not require unanimous approval

d. Create an approval process which utilizes parallel approvers, but does not require unanimous approval

Which relationship type should be used to capture a user's manager on each user record in the application? a. Man-to-many b. Master-detail c. Parent-child d. Hierarchical

d. Hierarchical

Which statement is TRUE about the custom object import wizard? a. It can import, upsert, update, delete and export data b. It can perform matching based on record ID onlu c. It can provide success and error files in .csv format d. It can prevent the import of duplicate records

d. It can prevent the import of duplicate records

When loading Account, Contact and User data, what represents the recommended order to load the data? a. Load Accounts, then Contacts, then Users b. The order does not matter c. Load Contacts, then Accounts, then Users d. Load Users, then Accounts, then Contacts

d. Load Users, then Accounts, then Contacts

All users of a Recruiting application should be able to edit all positions, except for user X, User X should be view positions. How can a developer meet this requirement? a. Set the organization wide default for positions to public Read/Write and use a Sharing Rule to rest b. Set the organization wide default for positions to public Read/Write and remove user X from the role c. Set the organization wide default for positions to public Read-Only and remove user X from the role d. Set the organization wide default for positions to public Read-Only and use a Sharing Rule to all users except user X

d. Set the organization wide default for positions to public Read-Only and use a Sharing Rule to all users except user X

Universal Containers has built a recruiting application with 2 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. Remove the delete button from the job application page layout c. Use workflow to change the page layout to Read-only d. Use a validation rule in conjunction with a roll-up summary field

d. Use a validation rule in conjunction with a roll-up summary field

In a recruiting application, all users should be able to see and edit all candidate records, but interviewers should NOT have access to the address of a candidate and should NOT be able to see the birth date of a candidate. How would a developer meet this requirement? a. Set the organization wide default for candidates to Edit some fields b. Set the organization wide defaults for candidates to Read-Only c. Remove the Edit permission on candidate from the interviewer's profile d. Use field-level security to control access to the Address and Birth Date fields

d. Use field-level security to control access to the Address and Birth Date fields

For objects where data access is granted through the role hierarchy, how is access granted? a. Users are only granted read access to data owned by users above them in the role hierarchy b. Users are granted access to data accessible by users below them in the role hierarchy c. Users are granted access to data accessible to users in the same role in the role hierarchy d. Users are only granted access to data owned by users below them in the role hierarchy

d. Users are only granted access to data owned by users below them in the role hierarchy

When do users have the option to manually share records they own from the record detail page? a. When a developer adds the Sharing button to the page layout b. When the organization wide default for the object is set to pubic read/write c. When a developer grants the users the Share Records permission d. When the organization wide defaults for the object is set to private or read-only

d. When the organization wide defaults for the object is set to private or read-only

How to restrict the user to see any record, lets say opportunity?

set up opportunity sharing to be private. If both users are admins or have view all records on opportunity, then that overrides private sharing


Ensembles d'études connexes

Art History 101 Part 2 Intro,1,2,3 MindTap

View Set

DOC1 Chapter 2 Knowing Your Students

View Set

Chapter 49: Management of Patients with Urinary Disorders

View Set

Paleoclimatology/ Climate Change

View Set