Wednesday 29 May 2013

Real Time Scenarios Asking in Interviews


1)If iam having 3 users  like A,B,C IF user A having 3 records,user B having 2 records and user C having 5 records but here my requirement is they won’t see each others records how can you do this?
Ans: Private
2)in field update workflow I have written a validation rule like if iam having a field it will take the input upto 99 whenever iam entering more than that it will display error message. For each time the field update it will update the value 100.intially iam take some value with in the range 99 and after that I enter 1000 then how much value will update on field?
Ans:Validation rules fire before saving the record and workflows will fire after saving the record
So value will be 100 only before saving the record it displays an error message and field containing the value for the previous record value.
3)if iam having 2 objects they dint relate each other but I want to show them in a  single report so that what can be used here?
Ans:Join reports
4)if iam having a check box and beside that iam having a textbox and also having a save button here my requirement is  initially text box is hidden whenever I select the checkbox and click the save button the text box will be visible so which attreibute we are using initially hidden and after that visible ?
Ans:By Using rendered attribute we can achive this.
5)if I have a field in that when ever a record is saved it will update the value with 100 so which events we are used?
Ans:before events
6)what are testing best practices?
7)if a record can be created edited and deleted and in the opportunity object one record is closed then it cant be deleted so what we can do here?
8)by using change sets can we move buttons to production?
Ans: Yes we can
9)By using change sets can u move approval process to production ?
Ans: yes we can
10)diff between partner portal  and customer portal?
11)what are the objects used in partner portal?

12)what are the objects used in customer portal?
13)what objects cant used in partner and customer portal?
14)in salesforce to salesforce can u subscribe campaign object?
15)if one field is hidden by using formula field can u calculate the value is it possible?
Ans: Yes we can
16)what is the use of include attribute?
Ans : we can include one vf page in another page
17)can u display pdf in salesforce?
Ans : Yes by using renderas tag
18)if I want to find the word rob then which one you are using soql or sosl?
Ans:sosl
19)what is metric dashboard?
20)scenario for approval process?



Friday 24 May 2013

401 Dumps Part - 9


  • Custom fields are stored for 45 days after deletion

  • Two types of custom tabs 
  • Custom object tabs-displays the data of your custom object in UI tab

  • Web tab-display any external web-based application or web page in UI tab

  • Blank spaces created with the enhanced page layout editor will be respected by the original page layout editor-you cannot edit them around in the original editor.

  • Queue-

  • Queues allow groups of users to manage a shared workload more effectively

  • A queue is a location where records can be routed to await processing by a group member

  • Records remain in the queue until a user accepts them for processing or they are transferred to another queue
    .
  • Developers can specify the set of objects that are supported by each queue,as well as set of users are allowed to retrieve records from the queue.

  • Any member of a queue has the same access to all records in the queue that an owner would have.

  • Workflow rule configuration-
Entry criteria:which records
-object type
-evaluation criteria
-rule criteria
Timing:whwn to execute action
-immediately
Time dependent
actions:what to do
-Assign task
-Send Email alert(1.from current user’s email address 2.From organization wide email)
-update field
-post outbound SOAP message
  • Record type name and ID can be formlula merge fields

  • Standard and custom users merge fields for the current user are also available,allowing user and profile specific validation rule

  • IsChanged(field) function allows validation to be conditional based on whether a specific value has changed.

  • PriorValue(field) allows access to previous value of a field.

  • IsNew() allows different validation rules for create vs. update actions.

  • License type-

  • Each user must have a user license

  • Different type of user license allow different levels of access

  • Feature licensedetermine wheather users have acces to additional features like mobile or content.

  • Profile-

  • Every user has only one profile.

  • We can group the things that profile controls in 3 categories-
    permission,access to data and user interface.

  • Permissions:general user permission,administrative permission,standard/custom object CRUD

  • Access to data:field level security,object CRUD,login hours and IP ranges

  • User interface:page layouts,record types,tabs,application.

  • Profile controls-

  • Tab settings determines which tabs a user sees when he logs in

  • Permissions determine what users can do to records to which they have access

  • Sets the hours when users with a particular profile can use the system

  • Sets the IP address from which users with a particular profile can log in.

  • There are 6 standard profiles.permissions on standard profiles cannot be customized.

  • Each profile is associated with a license type.

  • Typically,organizations will have one profile for each actor.

  • Levels of record access

  • Full access privileges:
-view
-edit
-transfer ownership
-delete
-share
  • Read/write privilege:
-View
-Edit
  • Read only privilege
-view
  • Ways to obtain access
  • Full access-
-owner field-user.queue number
-above user(who has ownership in role hierarchy)
-profile permission:”modify all data”
-object permission:”modify all”
  • Read/write or read only access-
-org wide default
-above user(who has read/write or read only access) in role hierarchy
-manual sharing
-apex sharing
-sharing rules
-profile permission:”view all data”
-object permission:”view all”
  • Child records in master details relationship inherit their org wide default from parent

  • Child records in lookup relationship have independent org wide default from their parent.

  • With standard object,access to records rolls up through the role hierarchy

  • With custom object,developers choose whether or not access should roll up through the role hierarchy.

  • Apex sharing reasons are defined for custom objects only.

  • Establishing apex sharing reasons allow developers to define the reason that a user or group of users might have access to a record.

  • Debug logs record error and system processes thet occur in the org.debug log contain information about-database change,automated workflow processes such as workflow rule,assignment rule,approval process,validation rule etc.

  • Time dependent workflow can’t be used when a rule is set to be evaluated ‘every time a record is created or updated’.


401 Dumps Part - 8

-->
  1. What is the maximum number of master-detail relationships that can be created on a custom object?
    1. 1
    2. 2
    3. 4
    4. Unlimited

  1. An organization has decided to manage hiring and positions. A custom object has been created to manage all new job positions. All positions below $50,000 must be approved by the hiring manager, and positions above $50,000 must be approved by the hiring manager, and the regional hiring manager. What would a developer use to declaratively fulfill the requirement?
    1. Apex Code, to check the position’s salary and assign to the appropriate resource for approval.
    2. Approval process.
    3. Validation rules.
    4. Dynamic Routing Approval.

  1. A developer has created a junction object what is the significance of the first master-detail (primary) relationship?
    1. Look and feel, the junction object's detail and edit pages use the color and any associated icon of the primary master object.
    2. You cannot delete the primary relationship.
    3. You cannot rename the primary relationship.
    4. There is no significance.

  1. An organization has created an application manage new hires and job positions. A custom object has been created to manage all job positions. Using an approval process they have configured the application to have the first step of the process require approvals from three different hiring managers.
Select the two (2) possible approval choices based on multiple approvers for an approval step.

    1. Approve or reject based on the first response.
    2. Require unanimous approval from all selected approvers…
    3. Require majority approval from all selected approvers
    4. Require x out of y approval from all selected approvers

  1. Which of the following is NOT a step in creating a junction object?
    1. Creating the custom object to serve as the junction object between the two master objects
    2. Creating two master-detail relationships
    3. Customizing the related lists on the page layouts of the two master objects
    4. Creating two lookup relationships…

  1. When a record has been rejected by all approvers, Salesforce executes all final rejection actions.
Which of the following is NOT a possible final rejection action?
    1. Lock the record from being edited
    2. Send an email to a designated recipient
    3. Delete the record…
    4. Update a field on the record

  1. Which of the following cannot be used on a User Page Layout?
Please select two (2) choices.
    1. Tags…
    2. Links
    3. Buttons…
    4. Custom Fields
    5. Inline Visualforce

  1. An organization wants to leverage a custom objects to track bugs. The organization wants the ability to related bugs to parent bugs in a parent-child relationship.
What type of relationship should be used?
    1. master-detail
    2. self…
    3. hierarchical
    4. many-to-many

  1. An organization wants to leverage the import wizards to import different types of data. What type of data cannot be imported through the wizard?
    1. Accounts and Contacts
    2. Leads
    3. Custom Objects
    4. Users…

  1. An organization is interested in leveraging the Data Loader to load data into salesforce.com. Which of the following are NOT capabilities of the data loader?
Please select two (2) choices.
    1. Import greater than 50,000 records
    2. Import data into 2 objects in a single transaction…
    3. Rollback import transactions….
    4. Run by command line

  1. An organization needs the ability view the value of the Opportunity Stage field on an Opportunity Product related list.
Please choose the declarative method of fulfilling the requirement.
    1. Create an Apex method to replicate the value on the child object, and set the field level security to read-only and expose the new field on the Opportunity Product related list.
    2. Create a cross object formula field on the Opportunity Product object and expose the formula field on the Opportunity Product related list..…
    3. Create a validation rule on the Opportunity Product object.
    4. Create a new pick list field called Stage on the Opportunity Product object, and expose the filed on the Opportunity Product related list.

  1. A developer wants to leverage the console to view to see the parent object of the child object in focus on the console. How would a developer specify what related list fields are displayed on the parent object?
    1. On an child object’s mini-page layout
    2. On an parent object’s mini-page layout related lists field selection
    3. On the parent object’s page layout related lists field selection
    4. You cannot modify the related fields on the console view

  1. An organization has two custom objects to track job positions and salaries for those positions. Everyone in the organization should be able to view the positions however, only select users can view the salary records. What steps should a developer take to ensure the requirement is fulfilled?
    1. Create a lookup relationship between positions and salaries; define public access on position and private access on salary
    2. Create a master-detail relationship between positions and salaries; define public access on position and private access on salary.
    3. Create a master-detail relationship between positions and salaries; define private access on position and create sharing rules on salary.
    4. Create a lookup relationship between positions and salaries; define public access on position and public access on salary; create sharing rules on salary to restrict visibility.

  1. A developer has created a custom field marked as an external id on an object. If two records in the object have the same external id, and an upsert action occurred for that same external id what would happen.
    1. The first matching external id record would be updated
    2. Both matching external id records would be updated
    3. A new record is created
    4. An error would be reported

  1. A developer has a requirement to collect the state and the cities for the state selected on an account page layout. Once the user selects a state only the possible cities in that state should be available for entry, what is the best declarative method for fulfilling this requirement.
    1. Create a workflow rule that will update the city once a state is entered
    2. Create a validation rule which will cause an error if the city is not in the state that has been entered
    3. Create a dependent pick list for cities based on the state that has been entered
    4. Create a formula field that lookups the valid cities for the state entered

  1. A developer has created an approval process. What would require that a formula entry criterion be used versus standard criteria?
    1. User profile evaluates to ‘System Administrator’
    2. Determine if the record is newly created
    3. Determine if a record has been updated
    4. Determine if a field has been changed

  1. An organization has created a HR application which contains a custom object for job positions and candidates for those positions. The HR managers want to see a view of the position with the best candidates for that position and not just all the candidates listed. What is the best method to fulfill the requirement?
    1. Add an inline Visualforce Page on the job position page layout
    2. Add the candidate related list to the job position page layout
    3. Create a validation rule on the job position page layout
    4. Create a formula field on the job position object and add to the page layout

  1. Which of the following is not process or data intensive.
    1. Time entry application
    2. Inventory management
    3. Word processing
    4. Human resource management

  1. Which two (2) items most closely relate to the View layer of the Model View Controller paradigm?
    1. Page Layout
    2. Validation Rule
    3. Custom Tab
    4. Custom Field

  1. In which salesforce instances would there be identical record IDs?
    1. Production; Full Sandbox
    2. Production; Full Sandbox; Apex Sandbox
    3. Production; Full Sandbox; Config Only Sandbox; Apex Sandbox;
    4. Salesforce.com never repeats record IDs

  1. A developer has created a time-based workflow that escalates a Lead record 10 days after it has been created if no updates have occurred. What is the best way for the developer to test that the new time based workflow rule is functioning?
Please select two (2) choices.
    1. User Debug Logs setup the Developer; create a new lead record; review debug logs
    2. Create a new lead record; view the time-based workflow queue;
    3. Setup the developer for time-based workflow queue; create a new lead record; view the time-based workflow queue;
    4. Create a new lead record; view the outbound messages queue
  1. What settings can you specify on a profile?
Please select two (2) choices.
  1. Revoke sharing permissions
  2. Enable record types
  3. Enable create read, create, edit, and delete on objects
  4. Specify language

  1. A manager in an organization wants to share specific fields of data to his subordinates that only he has access to. What is the best way to share specific fields of data?
Please select two (2) choices.
  1. Run As on dashboards
  2. Folder Permission on a Report
  3. Run As on scheduled reports
  4. Folder Permission on a Dashboard

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

  1. When creating a sharing rule what entities can data be shared to.
Please select three (3) choices.
  1. Public Groups
  2. Users
  3. Roles
  4. Roles and Subordinates
  5. Queues

  1. A developer needs to make a field that is normally accessible by most users inaccessible on the report wizard for specific users. What the best method to fulfill that requirement?
    1. Field level security
    2. Remove the field from the page layout
    3. Remove the field from the user profile
    4. Change my display under personal settings

  1. What can be done with report summary totals?
Please select two (2) choices:
    1. Calculate values from a previous report
    2. Calculations based on report summary totals
    3. Highlight outliers
    4. Historical analysis

  1. If a parent object has a lookup relationship defined with a child object. What happens in the child object when you delete a record from the parent?
    1. The child record is deleted
    2. Nothing
    3. The parent record cannot be deleted
    4. The child record cannot be deleted

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

  1. Select the features that are available through custom report types.
Please select two (2) items.
  1. Define object relationships and fields for reports
  2. Define up to 4 object relationships
  3. Define anti-join relationships
  4. Create analytic snapshot reports

  1. An organization wishes to have everyone view/edit records on an object except for a single person x who should only have read-only access to the object. What is the best way to implement the requirement?
    1. Modify the sharing access for the object to public read/write and remove user x from the role hierarchy
    2. Modify the sharing access for the object to private and remove user x from the role hierarchy
    3. Modify the sharing access for the object to public read only, create a public group with everyone except user x; create a sharing rule and define read/write access to the public group.
    4. Modify the page layout to be read-only.

  1. 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.
    1. TODAY() – DATEVALUE(CreatedDate)
    2. NOW() – DATEVALUE(CreatedDate)
    3. TODAY() – CreatedDate
    4. CreatedDate – TODAY()

  1. Salesforce.com has notified you that they have enabled the ability to update audit fields for your organization. When inserting a record which field can you set?
    1. CreatedDate
    2. IsDeleted
    3. SysModStamp
    4. UpdatedDate

  1. A developer needs to create a trending report what should he/she use to get the historical data?
    1. Reports
    2. Analytic Snapshots
    3. Roll-Up Summary
    4. Report Types
    5. Audit History Records

  1. What is the best type of dashboard component to display a list of your top 10 customers?
    1. Metric
    2. Table
    3. Gauge
    4. Chart
  2. Select the salesforce.com edition that is NOT available today
    1. Professional
    2. Unlimited
    3. Enterprise
    4. Premium

  1. 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.
    1. Install a database server
    2. Configure an application using clicks not code
    3. Deploy a web server
    4. Administer and email server

  1. An organization wants to create a field to store manager data on the user object. The manager field is a reference to another user record.
What type of relationship should be used?
  1. master-detail
  2. hierarchical
  3. lookup
  4. many-to-many

  1. What are the data types that are supported by formula field?
Please select three (3) choices.
    1. Text
    2. Percent
    3. Email
    4. Currency
    5. Phone

  1. What is true about a junction object?
    1. A custom object that has 2 master-detail relationships.
    2. A custom object that has a master-detail relationship.
    3. A standard object that has 2 master-detail relationships.
    4. A standard object that has a master-detail relationship.

  1. What is true about a cross-object formula field for a master-detail relationship?
    1. You can only create a cross-object formula field on the parent object.
    2. You can only create a cross-object formula field on the child object.
    3. You can create a cross-object formula field on both the parent and child object.
    4. Cross-object formula field is not available for master-detail relationship.

  1. When you create a custom tab for a custom object, what are the features that are available by default?
Please select two (2) choices.
    1. Sidebar Search Object
    2. Custom Reporting
    3. Quick Create
    4. Ability to track Activity

  1. What are the different custom tabs that you can create?
Please select three (3) choices.
    1. Web Tab
    2. Apex Tab
    3. Visualforce Tab
    4. Custom Object Tab
    5. Standard Object Tab

  1. For the order management application, the developer has created a custom object to store the product line and product combination. When creating an order, the product line and product combination needs to be consistent. What is the best option for implementing this?
    1. Use a workflow to update the product automatically based on the product line.
    2. Create a validation rule using IF
    3. Create a formula field to enforce the combination
    4. Create a validation rule using VLOOKUP

  1. What is true about a master-detail relationship?
Please select two (2) choices.
    1. When the parent record has been deleted, all the child records will be deleted.
    2. You can have a child record without the parent record.
    3. You have to expose the master lookup field on the child detail page layout.
    4. You cannot delete a child record.

  1. How do Salesforce enforce data access using role hierarchy?
    1. Users are given access to the records owned by the users who are below the role hierarchy.
    2. Users are given access to the records owned by the users who share the same role on the role hierarchy.
    3. Users are given access to the records accessible by the users who are below the role hierarchy.
    4. Users are given access to the records accessible by the users who are above the role hierarchy.

  1. What will cause the analytic snapshots run to fail?
Please select three (3) choices.
    1. The source report has been deleted.
    2. The target object has a trigger on it.
    3. The running user has been inactivated.
    4. The target object is a custom object.
    5. The source report is saved as Matrix report

  1. What are the components belong to the Model of the Model-View-Controller design paradigm?
Please select three (3) choices.
    1. Custom Relationship
    2. Custom Page Layout
    3. Custom Object
    4. Custom Field
    5. Workflow Rules


  1. Where do you change the Hover detail?
    1. Mini View
    2. Page Layout
    3. Profile
    4. Mini Page Layout

  1. What layer of model-view-controller paradigm does standard or custom objects associated with?
  1. View
  2. Model
  3. Controller
  4. View and Controller

  1. What is a junction object?
  1. Object with lookup relationship
  2. Master detail relationship
  3. Object with two lookup relationship
  4. Object with two master-detail relationship


  1. What field can be controlled by translation workbench?
  1. Rule Criteria
  2. Formula
  3. Validation Errors
  4. Assignment Rules

  1. In a master-detail relationship, what happens when the a record is deleted from parent object
  1. Parent record alone gets deleted
  2. Exception occurs
  3. Parent and Child record will not be deleted
  4. All child records are deleted





  1. In a recruiting application, Salary is a child object to parent Position object via master-detail relationship. The min pay and max pay fields of salary object cannot be modified when Position status on the parent is “Approved”.
How would a developer design this?
  1. Create a Visualforce component on Position detail page
  2. Rollup-Summary Field
  3. Validation rule on Position object
  4. Formula field on the Salary object
  5. Validation rule on the Salary Object

  1. Object X has a lookup to Object Y. What among the following statements are TRUE
Please choose two (2).
  1. Fields of both X and Y are accessible from Object Y.
  2. Fields of Object Y can be accessed from Object X.
  3. Fields of both Y and X are accessible from Object X.
  4. Fields of Object X can be accessed from Object Y.

  1. In master-detail relationship scenario where the fields of the parent object needs to be displayed in the related list. How will a developer design this:
  1. Cross-object formula field
  2. Workflow rule
  3. Validation Rule
  4. Assignment rule

  1. What are the components of the dashboard that use grand totals
Please choose two (2) items.
  1. Chart
  2. Metric
  3. Table
  4. Gauge


  1. Universal Containers needs to make all records of an object visible to all users when it is in “Approved” status. The records are created with “New” status and are only visible to a select set of users.
How will a developer implement this?
  1. Set the object level sharing to Private, add a workflow rule to update the sharing rule when status changes.
  2. Set the object level sharing to Public Read-Only, restrict the sharing when status is ‘New’.
  3. Set the object level sharing to Private, create a public group with appropriate users, modify manual sharing to public group based on status
  4. Create role hierarchy, modify the user profiles when status changes

  1. In a master-child relationship between a standard object and custom object.
Which of the following statements is NOT true.
Please select two (2) items
  1. Standard object is always the master
  2. Custom Object is always the master
  3. Custom object is always a child
  4. Standard or custom object can be a master
  5. Standard object is never a child

  1. A customer has a requirement to filter on columns in the related list. As a developer how will you accomplish
  1. Use the filter option in the related list section of the Page Layout
  2. Use the filter option in the related list section of the Mini Page Layout
  3. Use the filter option in the detail page layout of the related list object
  4. Build a visual force component with filter to replace the related list section of the Page Layout

  1. How do you highlight totals in a report
  1. Roll-up Summary Field
  2. Formula Field
  3. Custom Summary Field
  4. Summary Totals

  1. Recruiting application has a Position object that contains location, department and other information relating to a position. A report needs to customized that is grouped by department but not on locations.
What is the best type of report would a developer choose?
  1. Summary Report
  2. Tabular Report
  3. Matrix Report
  4. A report using visual force

  1. In Recruiting application a Position that is of type “Critical” should not be open for more than 14 days. How will you develop the business logic to cater to this.
  1. Time-dependant workflow action to send an e-mail to the owner after 14 days
  2. Time-dependant workflow action to send the record for review to owner after 14 days
  3. Time-dependant workflow action to send an e-mail to owner before 14 days
  4. Time-dependant workflow action to close the position after 14 days

  1. A job application object has a child review object to store candidate review. The review needs to be tracked between a score of 1 to 5. The score has to be a choice between 1 and 5 displayed as a radio button.
How will a developer cater to this requirement?
  1. Create 5 fields for scores (1 to 5) of type radio-button and use it in review page layout.
  2. Create a dependent picklist that feeds the radio button type field.
  3. Create a formula field
  4. Create visual force page with radio buttons for review object

  1. An application was designed without considering requirements for reports are dashboard. Which of the following statements is TRUE.
  1. The data model will support all the requirements of the application including reports and dashboards
  2. Reports are part of the application and application design will take care of it.
  3. No special considerations for reports or dashboard are required as salesforce can natively take care of the requirements.
  4. The data model and the application will not cater for reports and dashboards


  1. In a data model object A is related to B, B is related to C. How will a developer create a report to include fields of A and C.
  1. Create lookup relationships between A,B and C
  2. Create a Custom Report type with A, B and C, and use it in the report
  3. Create a custom report with A and C fields as relationships already exist
  4. Report cannot be created


401 Dumps Part - 7


-->
  1. In the statement below, controller refers to what type of controller? Select the one correct answer. <apex:page controller="AccountController">
    1. Standard Controller
    2. Custom Controller
    3. Controller Extension
    4. Specific Controller


  1. Which of the following represent correct syntax to display first name from global variable user? Select the one correct answer.
    1. {User.FirstName}
    2. {!User.FirstName}
    3. $User.FirstName
    4. {!$User.FirstName}


  1. Which of these is not a standard profile? Select the one correct answer.
    1. Developer
    2. Contract Manager
    3. Read only
    4. Solution Manager


  1. Name the language Force.com uses to support full-text search in objects. Select the one correct answer.
    1. SQL
    2. VisualForce
    3. SOQL
    4. SOSL –SalesForce Object Search Language


  1. Before a code can be deployed on production what percentage of test coverage must be achieved. Select the one correct answer.
    1. 25%
    2. 50%
    3. 75%
    4. 100%


  1. In Salesforce what is the maximum number of fields that can be added to an object? Select the one correct answer.
    1. There is no such limit on the number of fields
    2. 100
    3. 200
    4. 500


  1. How many characters are there in the Salesforce case-insensitive id field of an object? Select the one correct answer.
    1. id field is not mandatory
    2. The field length is customizable
    3. This depends on the version of Salesforce
    4. 18 Character Case –insensitive(15 character case sensitive)


  1. Name the prefix used by standard VisualForce markup tags. Select the one correct answer.
    1. vf
    2. apex
    3. c
    4. s


  1. Which of the following cannot be included in a VisualForce page? Select the one correct answer.
    1. Java
    2. JavaScript
    3. HTML
    4. Flash


  1. To create a new VisualForce page HelloWorld in developer mode, which URL should be appended to server address? Select the one correct answer.
    1. /HelloWorld
    2. /vf/HelloWorld
    3. /apex/HelloWorld
    4. /home/HelloWorld


  1. What is the maximum size of a VisualForce page? Select the one correct answer.
    1. 1 MB
    2. 5 MB
    3. 15 MB
    4. There is no limit on the size of a VisualForce page


  1. What is the number of components that can be added to a dashboard? Select the one correct answer.
    1. 20
    2. 25
    3. 50
    4. 100


  1. Which of these represent the correct syntax for custom controllers? Select the one correct answer.
    1. <apex:page controller="MyController">
    2. <apex:page standardController="MyController">
    3. <apex:page customController="MyController">
    4. <apex:page privateController="MyController">


  1. Which is the first step when creating reports? Select the one correct answer.
    1. Select report name
    2. Select object on which report needs to be generated
    3. Select type of report
    4. Select columns to be displayed


  1. Which of these is not a valid report type. Select the one correct answer.
    1. Summary
    2. Matrix
    3. Tabular
    4. Detailed


  1. Which report type is used to group rows of data and show their subtotals. Select the one correct answer.
    1. Summary
    2. Matrix
    3. Tabular
    4. Detailed


  1. Which report type is used to group rows and columns of data and show their subtotals. Select the one correct answer.
    1. Summary
    2. Matrix
    3. Tabular
    4. Detailed


  1. Which report type does not allow generation of charts? Select the one correct answer.
    1. Summary
    2. Matrix
    3. Tabular
    4. Detailed


  1. Which of these are valid data type in Force.com development platform. Select the two correct answers.
    1. Percent
    2. URL
    3. Choicebox
    4. Long
    5. Decimal


  1. 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.
    1. Disable Visible and Read-Only
    2. Disable Visible but Enable Read-Only
    3. Enable Visible but Disable Read-Only
    4. Enable Visible and Read-Only


  1. Which report type does not support analytical snapshot? Select the one correct answer.
    1. Summary
    2. Matrix
    3. Tabular
    4. Detailed


  1. 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.
    1. Console
    2. Dashboards
    3. Analytical Snapshot
    4. Packages
    5. Layout template


  1. 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.
    1. Gauge
    2. Metric
    3. Table
    4. Chart
    5. VisualForce page


  1. 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.
    1. Gauge
    2. Metric
    3. Table
    4. Chart
    5. VisualForce page


  1. 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.
    1. Gauge
    2. Metric
    3. Table
    4. Chart
    5. VisualForce page


  1. 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.
    1. Summary
    2. Matrix
    3. Tabular
    4. Analytic Snapshot


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


  1. 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.
    1. Object level access to profiles
    2. Field level access to profiles
    3. Organization wide defaults
    4. Role hierarchy
    5. Sharing rules
    6. Manual sharing


  1. 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.
    1. REGEX
    2. EXPRMATCH
    3. ISNUMBER
    4. PRIORVALUE
    5. VLOOKUP


  1. 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.
    1. REGEX
    2. EXPRMATCH
    3. ISNUMBER
    4. PRIORVALUE
    5. VLOOKUP


  1. Which of these functions is available in formulae field. Select the one correct answer.
    1. ISCHANGED
    2. ISNEW
    3. REGEXC
    4. IF
    5. VLOOKUP
    6. All of these functions are available in a formula field


  1. 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.
    1. Debug Log
    2. System Log
    3. Setup Audit Trail
    4. Field level security


  1. 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.
    1. Debug Log
    2. System Log
    3. Setup Audit Trail
    4. Field level security


  1. 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.
    1. Debug Log
    2. System Log
    3. Setup Audit Trail
    4. Field level security


  1. 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.
    1. Debug Log
    2. System Log
    3. Setup Audit Trail
    4. Field level security


  1. Which of the following is correct about custom fields in Salesforce. Select one correct answer.
    1. 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
    2. A required field is always present in an edit page
    3. A unique field is always present in an edit page
    4. A unique field increases report and SOQL performance


  1. Fields of the which of the following type is not allowed to be set as external ids. Select one correct answer.
    1. Date
    2. Number
    3. eMail
    4. Text


  1. The number of master detail relationship that an object can have are
    1. 1
    2. 2
    3. 25
    4. 300


  1. The number of Lookup relationship that an object can have are
    1. 1
    2. 2
    3. 25
    4. 300


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


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


  1. Which of the following is not supported by Enhanced Page Layout editor. Select the one correct answer.
    1. Change the field name
    2. Add blank spaces
    3. Make a field required or read-only
    4. Add a new section
    5. Add a new custom field


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


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


  1. Which of the following is not a valid return type of a custom formula. Select one correct answer.
    1. Date
    2. Decimal
    3. Text
    4. Array


  1. Which of the following is not a part of a Force.com app. Select one correct answer.
    1. Notes
    2. Tab
    3. Links
    4. Forms


  1. An organization needs to create a public website that displays data from Salesforce.com organization without user registration. Select one correct answer.
    1. Apex
    2. Triggers
    3. Salesforce Knowledgebase
    4. Force.com sites
    5. Formula