• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/48

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

48 Cards in this Set

  • Front
  • Back
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 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.
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. There is no developer standard profile.
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.
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.
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.
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.
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.
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
D: VisualForce page address appears like /apex/HelloWorld.
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.
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.
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 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
B. The first step when creating reports is select the object type.
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.
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.
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.
Which report type does not allow generation of charts? Select the one correct answer.
A: Summary
B: Matrix
C: Tabular
D: Detailed
C.
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.
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.
Which report type does not support analytical snapshot? Select the one correct answer.
A: Summary
B: Matrix
C: Tabular
D: Detailed
B. Matrix report cannot be used to generate Analytical snapshot.
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.
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
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.
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.
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 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.
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.
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.
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.
Which of these functions is available in formulae field. Select the one correct answer.
A: ISCHANGED
B: ISNEW
C: REGEX
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.
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.
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.
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.
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.
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.
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.
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
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 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
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
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.
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.
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.
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.
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.
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
A. Key element of a Salesforce app are Tab, Links and Forms.
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 Knowledge base
D: Force.com sites
E: Formula
D. Force.com sites is used to build public facing sites.