An effort to bring a revolution in Salesforce.

Wednesday 22 July 2015

Salesforce 401 Dev Certification Questions Answers Part 2

51.     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
Ans : c
52.     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
Ans : a, b, c
53.     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
Ans : b
54.     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
Ans : a, c
55.     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
Ans : a, b, c
56.     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
Ans : b
57.     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
Ans : b, c
58.     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
Ans : d
59.     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
Ans : b, c, e
60.     Custom objects automatically have some standard fields
a.        True
b.        False
Ans : a
61.     ________lookup relations are allowed per object
a.        10
b.        20
c.        25
d.        40
Ans : c
62.     Junction object is a Custom Object with three master detail relationships
a.        True
b.        False
Ans : b
63.     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
Ans : b
64.     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
Ans : a
65.     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
Ans : a, b, c
66.     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
Ans : c, d
67.     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
Ans : a, d
68.     In a  recruiting application 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
Ans : a, c
69.     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
Ans : d
70.     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
Ans : b
71.     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
Ans : b
72.     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
Ans : c
73.     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
Ans : a
74.     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
Ans : a, c
75.     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
Ans : d
76.     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
Ans : d
77.     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
Ans : b, d
78.     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
Ans : d
79.     How many master-detail relationship can be created on one object?
a.        2
b.        1
c.        4
d.        3
Ans : a
80.     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
Ans : a
81.     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
Ans : c, d
82.     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
Ans : c
83.     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
Ans : b
84.     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
Ans: a, b
85.     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
Ans : d
86.     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
Ans : c
87.     Which element is included in the security model for Force.com Sites? Choose 2 answers
a.        Full CRUD permissions on all custom objects
b.        Read/write permissions on all standard objects
c.        Named Visualforce pages
d.        Restricted IP ranges
Ans : c, d
88.     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
Ans : c
89.     How can a developer configure an approval process to prevent a record from being edited by the submitter?
a.        Records are locked by default on submission; no action required
b.        Set an action to look 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
Ans : b
90.     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
Ans : a, b
91.     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
Ans : a, b, e
92.     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
Ans : a, c, d
93.     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
Ans : a
94.     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
Ans : c
95.     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
Ans : b
96.     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
Ans : b, c, d
97.     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
Ans : a, c
98.     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
Ans : d
99.     100.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
Ans : b, d
100.  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?
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.
Ans : a, b
101.   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
Ans : a
102.   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
Ans : a
103.   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.
Ans : c
104.  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
Ans : d
105.   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
Ans : a, d
106.   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
Ans : c
107.  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
Ans : b, c
108.  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 loosing customizations
Ans : a, c, d
109.   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
Ans : a, b, c
110.  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
Ans : c
111.   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
Ans : b, d

112.  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
Ans : b
113.  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
Ans : a

No comments:

Post a Comment

Get Gmail, Docs, Drive, and Calendar for business