SlideShare a Scribd company logo
1 of 104
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 Can two users have the same profile?
 Can two profiles be assigned to the same user?1
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 Can two users have the same profile?
 Can two profiles be assigned to the same user?1
➢ Yes. One profile can be assigned to any number of users
➢ However, each user can only be assigned 1 profile
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are Governor Limits?2
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are Governor Limits ?2
• Salesforce works on the concept of multi-tenant architecture
where the resources are shared across multiple clients.
• To make sure no one client monopolize the shared resources,
Apex run-time engine strictly enforces governor limits.
• If your Apex code ever exceeds that limit, the expected governor
issues a run-time exception that cannot be handled.
• Hence as a Salesforce developer, you have to be very careful
while developing your application.
MULTI-TENANTARCHITECTURE
Common
Application
for all Clients
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is a sandbox org?
 What are the different types of sandboxes in Salesforce?3
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is a sandbox org?
 What are the different types of sandboxes in Salesforce?3
➢ A sandbox is a copy of the production environment/ org, used for testing and development purposes.
➢ It’s useful because it allows development on Apex programming without disturbing the production environment.
➢ Types of Sandboxes are:
• Developer
• Developer Pro
• Partial Copy
• Full
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 Can you edit an apex trigger/ apex class in production environment?
 Can you edit a Visualforce page in production environment?4
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 Can you edit an apex trigger/apex class in production environment?
 Can you edit a Visualforce page in production environment?4
• No, it is not possible to edit apex classes and triggers directly on production environment.
• It can be done only on Developer Edition & Sandbox. To deploy it in production, a user with Author Apex permission must
deploy the triggers and classes using deployment tools.
• However, Visualforce pages can be created and edited in both sandbox and in production.
• Only if the page has to do something unique (different values), it would have to be developed via Sandbox.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the different data types that a standard field record name
can have?5
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the different data types that a standard field record name
can have?5
➢ Standard field record name can have data type of either auto number or text field with a limit of 80 chars.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 Why are Visualforce pages served from a different domain?6
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 Why are Visualforce pages served from a different domain?6
➢ Visualforce pages are served from a different domain to improve security standards and block cross site scripting.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is WhoId and WhatId in activities?7
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is WhoId and WhatId in activities?7
➢ WhoID refers to people. Typically: contacts or leads. Example: LeadID, ContactID
➢ WhatID refers to objects. Example: AccountID, OpportunityID
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is the use of writing sharing rules?
 Can you use sharing rules to restrict data access?8
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is the use of writing sharing rules?
 Can you use sharing rules to restrict data access?8
➢ By default, all users in your organization will have organization-wide-default sharing settings of either Public Read Only
or Private.
To give access to more records, which users do not own, we write sharing rules.
Example: Sharing rules are used to extend sharing access to users in public groups or roles.
Hence, sharing rules are not as strict as organization-wide default settings. They allow greater access for those users.
➢ No, we cannot use sharing rules to restrict data access. It is only used for allowing greater access to records.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the different types of email templates that can be created
in Salesforce?9
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the different types of email templates that can be created
in Salesforce?9
Text All users can create or change this template
HTML with letterhead
Only Administrators and users having “Edit HTML Templates” permissions can create this template
based on a letterhead.
Custom HTML
Administrators and users having “Edit HTML Templates” permissions can create this template
without the need of a letterhead
Visualforce
Only administrators and developers can create this template. Advanced functionalities like merging
data from multiple records is available only in this template
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is a bucket field in reports?10
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is a bucket field in reports?10
• Bucketing lets you quickly categorize report records without creating a formula or a custom field within Salesforce.
• They can be used to group, filter, or arrange report data.
• When you create a bucket field, you need to define multiple categories (buckets) that are used to group report values.
• Earlier, we had to create custom fields to group or segment certain data.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are dynamic dashboards?
 Can dynamic dashboards be scheduled?11
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are dynamic dashboards?
 Can dynamic dashboards be scheduled?11
➢ Dynamic dashboards are used to display information tailored to a specific user, while a normal dashboard shows data only
from a single user's perspective.
You can use dynamic dashboards when you want to show each user user-specific data, such as their personal quotas and
sales, or number of case closures, or leads converted, etc.
You can also use a normal dashboard when you want to show regional or organization-wide data to a set of users, such as a
region's sales, or a support team's performance on case closures.
➢ No we cannot schedule a dynamic dashboard.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the different types of reports available in Salesforce?
 Can we mass delete reports in Salesforce?12
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the different types of reports available in Salesforce?
 Can we mass delete reports in Salesforce?12
1. Tabular reports Simple Excel type tables which provide a list of items with a grand total
2. Summary reports Similar to Tabular reports, but also have functionality of grouping rows, viewing subtotals & creating charts
3. Matrix reports Two-dimensional reports which allow you to group records both by row and column.
4. Joined reports Multiple blocks showing data from different reports based on same or different report types
➢ Yes, we can mass delete reports in Salesforce.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the different types of object relations in salesforce?
 How can you create them?13
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the different types of object relations in salesforce?
 How can you create them?13
➢ Object relationship is used in Salesforce to create a link between two objects.
The different types of object relations in Salesforce are:
• Master-Detail
• Lookup
• Junction
➢ Relationships can be defined while choosing the data type in the child object. They are always referenced to the common
field in the master object.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What happens to detail record when a master record is deleted?
 What happens to child record when a parent record is deleted?14
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What happens to detail record when a master record is deleted?
 What happens to child record when a parent record is deleted?14
➢ In a Master-Detail relationship, when a master record is deleted, the detail record is deleted automatically (Cascade delete).
➢ In a Lookup relationship, even if the parent record is deleted, the child record will not be deleted.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 Can you have a roll up summary field in case of master- detail
relationship?15
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 Can you have a roll up summary field in case of master- detail
relationship?15
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 Explain the term “data skew” in Salesforce.16
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 Explain the term “data skew” in Salesforce.16
➢ When more than 10,000 records of an object are owned by one single user, we call that condition ownership data skew.
➢ When such users perform updates, performance issues will be encountered because of “data skew”.
➢ This happens when a single user/ members of a single role own most of the records for a particular object.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 Explain skinny table.
 What are the considerations for Skinny Table?17
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 Explain skinny table.
 What are the considerations for Skinny Table?17
➢ In Salesforce, skinny tables are used to access frequently used fields and to avoid joins.
Even when the source tables are modified, skinny tables will be in sync with source tables.
➢ Considerations for skinny tables:
• Skinny tables can contain a maximum of 100 columns.
• Skinny tables cannot contain fields from other objects.
• For full sandboxes: Skinny tables are copied to your Full sandbox organizations, as of the Summer '15 release.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 Which fields are automatically Indexed in Salesforce?18
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 Which fields are automatically Indexed in Salesforce?18
Following fields are automatically indexed:
• Primary keys (Id, Name and Owner fields).
• Foreign keys (lookup or master-detail relationship fields).
• Audit dates (such as SystemModStamp).
• Custom fields marked as External ID or Unique.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How to handle comma within a field while uploading using Data Loader?19
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How to handle comma within a field while uploading using Data Loader?19
In Data Loader CSV, if there is a comma in field content, you will have to enclose the contents within double quotation marks: " ".
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 For which criteria in workflow "time dependent workflow action" cannot
be created?20
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 For which criteria in workflow "time dependent workflow action" cannot
be created?20
➢ Time dependent workflow action is created, and every time it is edited.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the types of custom settings in Salesforce?
 What is the advantage of using custom settings?21
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the types of custom settings in Salesforce?
 What is the advantage of using custom settings?21
➢ List Custom Settings: Is a type of custom setting that provides a reusable set of static data that can be accessed across
your organization irrespective of user/ profile.
Hierarchy Custom Settings: Is a type of custom setting that uses built-in hierarchical logic for “personalizing” settings for
specific profiles or users.
➢ Advantage of using Custom Settings is that it allows developers to create custom set of access rules for various users &
profiles.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How many active assignment rules can you have in lead/ case?22
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How many active assignment rules can you have in lead/ case?22
➢ Only one rule can be active at a time
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are custom labels in salesforce?
 What is the character limit of custom label?23
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are custom labels in salesforce?
 What is the character limit of custom label?23
➢ Custom labels are custom text values that can be accessed from Apex classes or Visualforce pages.
The values can be translated into any language Salesforce supports.
They enable developers to create multilingual applications by automatically presenting information in a user’s native language.
➢ You can create up to 5,000 custom labels for your organization, and they can be up to 1,000 characters in length.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is the difference between Role and Profile?24
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is the difference between Role and Profile?24
➢ Role/ Role hierarchy allows users in hierarchy with higher level, have access to records owned by users with lower level
of access.
Having a Role is not mandatory for users.
➢ Profile controls access to which objects/ field permissions that a user has within the org.
Having a Profile is mandatory for users.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the examples of Non-deterministic Force.com formula fields?25
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the examples of Non-deterministic Force.com formula fields?25
Non-deterministic Force.com fields are:
➢ Look up
➢ Formula reference span over entities
➢ Dynamic dates using TODAY() or NOW() functions
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 Why do we need to write test classes?
 How to identify if a class is a test class?26
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 Why do we need to write test classes?
 How to identify if a class is a test class?26
➢ To create robust and error-free code in Apex, Salesforce requires you to write Unit tests in Apex code.
Unit tests are comprised of test methods and classes that verify whether a particular piece of code is working properly.
➢ If the class is annotated with @isTest keyword, then it is a test class.
If any method within a class has keyword testMethod, then it is a test method.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is minimum test coverage required for trigger to deploy?27
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is minimum test coverage required for trigger to deploy?27
At least 75% of your Apex code must be covered by unit tests, and all of those tests must complete successfully.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the different ways of deployment in Salesforce?28
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the different ways of deployment in Salesforce?28
The different deployment methods are as follows:
1. Change Sets
2. Eclipse with Force.com IDE
3. Force.com Migration Tool – ANT/Java based
4. Salesforce Package
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is an external ID in Salesforce?
 Which all field data types can be used as external ids?29
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is an external ID in Salesforce?
 Which all field data types can be used as external ids?29
➢ An External ID is a custom field that has an External ID attribute, meaning that it contains unique record identifiers from a
system outside of Salesforce.
Mainly used while importing data.
➢ Only custom fields can be marked as External IDs. Those fields are: Text, Number, E-Mail and Auto-Number.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How many callouts to external service can be made in a single Apex
transaction?30
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How many callouts to external service can be made in a single Apex
transaction?30
➢ A single Apex transaction can make a maximum of 100 callouts to an HTTP request or an API call.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How can you expose an Apex class as a REST WebService in
Salesforce?31
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How can you expose an Apex class as a REST WebService in
Salesforce?31
➢ Use global classes and a webservice callback method.
➢ Invoking a custom Apex REST Web service method always uses system context. Consequently, the current user's credentials
are not used, and any user who has access to these methods can use their full power, regardless of permissions, field-level
security, or sharing rules.
Developers who expose methods using the Apex REST annotations should therefore take care that they are not inadvertently
exposing any sensitive data.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How can you expose an Apex class as a REST WebService in
Salesforce?31
global class AccountPlan {
webservice String area;
webservice String region;
//Define an object in apex that is exposed in apex web service
global class Plan {
webservice String name;
webservice Integer planNumber;
webservice Date planningPeriod;
webservice Id planId;
}
webservice static Plan createAccountPlan(Plan vPlan) {
//A plan maps to the Account object in salesforce.com.
//So need to map the Plan class object to Account standard object
Account acct = new Account();
acct.Name = vPlan.name;
acct.AccountNumber = String.valueOf(vPlan.planNumber);
insert acct;
vPlan.planId=acct.Id;
return vPlan;
} }
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is the difference between a standard controller and a custom
controller?32
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is the difference between a standard controller and a custom
controller?32
➢ Standard controller in Apex, inherits all the standard object properties and standard button functionality directly.
It contain the same functionality and logic that are used for standard Salesforce pages.
➢ Custom controller is an Apex class that implements all of the logic for a page without leveraging a standard controller.
Custom Controllers are associated with Visualforce pages through the controller attribute.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How can we implement pagination in Visualforce?33
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How can we implement pagination in Visualforce?33
By default, a list controller returns 20 records on the page. To control the number of records displayed on each page, use a
controller extension to set the pageSize.
<apex:page standardController="Account" recordSetvar="accounts">
<apex:pageBlock title="Viewing Accounts">
<apex:form id="theForm">
<apex:pageBlockSection >
<apex:dataList var="a" value="{!accounts}" type="1">
{!a.name}
</apex:dataList>
</apex:pageBlockSection>
<apex:panelGrid columns="2">
<apex:commandLink
action="{!previous}">Previous</apex:commandlink>
<apex:commandLink action="{!next}">Next</apex:commandlink>
</apex:panelGrid>
</apex:form>
</apex:pageBlock>
</apex:page>
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How can you call a controller method from java script?34
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How can you call a controller method from java script?34
You can use an ActionFunction from JavaScript for calling the controller method (Apex function).
<apex: page>
<apex:form id ="frm">
<apex:actionfunction name="callfromJS" action="{!controllerMethodName} reRender="frm"/>
</apex:form>
<script>
function JSmethodCallFromAnyAction()
{
callfromJS();
}
</apex:page>
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How to get the UserID of all the currently logged in users using Apex
code?35
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How to get the UserID of all the currently logged in users using Apex
code?35
➢ You can get the ID’s of the currently logged in user by using: UserInfo.getUserId().
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How many records can a select query return?
 How many records can a SOSL query return?36
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How many records can a select query return?
 How many records can a SOSL query return?36
➢ Total number of records retrieved by SOQL: 50000
➢ Total number of records retrieved by Database.getQueryLocator: 10000
➢ Total number of records retrieved by SOSL: 2000
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is attribute tag?
 What is the syntax for including them?37
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is attribute tag?
 What is the syntax for including them?37
➢ A definition of an attribute on a custom component. The attribute tag can only be a child of a component tag.
➢ Note that you cannot define attributes with names like id or rendered. These attributes are automatically created for all custom
component definitions.
<apex:component>
<apex:attribute name="myValue" description="This is the value for the component." type="String" required="true"/>
<apex:attribute name="borderColor" description="This is color for the border." type="String" required="true"/>
<h1 style="border:{!borderColor}">
<apex:outputText value="{!myValue}"/>
</h1>
</apex:component>
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are three types of bindings used in Visualforce?
 What does each refer to?38
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are three types of bindings used in Visualforce?
 What does each refer to?38
There are three types of bindings used in Salesforce:
▪ Data bindings, which refer to the data set in the controller
▪ Action bindings which refer to action methods in the controller
▪ Component bindings which refer to other Visualforce components.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the different types of collections in Apex?
 What are maps in Apex?39
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the different types of collections in Apex?
 What are maps in Apex?39
➢ Collections are the type of variables which can store multiple number of records (data).
There are 3 collection types in Salesforce:
▪ Lists
▪ Maps
▪ Sets
➢ Maps are used to store data in the form of key-value pairs, where each unique key maps to a single value.
Syntax: Map<String, String> country_city = new Map<String, String>();
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How can you embed a Visaulflow in a Visualforce page?40
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 How can you embed a Visaulflow in a Visualforce page?40
1. Find the flow’s unique name.
a. From Setup, enter Flows in the Quick Find box, then select Flows.
b. Click the name of the flow.
c. Copy the unique name of the flow.
2. From Setup, enter Visualforce Pages in the Quick Find box, then select Visualforce Pages.
3. Define a new Visualforce page, or open an existing one.
4. Add the <flow:interview> component somewhere between the <apex:page> tags.
5. Set the name attribute to the unique name of the flow.
For example:
</apex:page>
<flow:interview name="flowuniquename"/>
<apex:page>
6. Click Save.
7. Restrict which users can access the Visualforce page.
a. Click Visualforce Pages.
b. Click Security next to your Visualforce page.
c. Move all the appropriate profiles from Available Profiles to Enabled Profiles by using the add
and remove buttons.
d. Click Save.
8. Add the Visualforce page to your Force.com app by using a custom button, link, or Visualforce tab.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is the use of “@future” annotation?41
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is the use of “@future” annotation?41
➢ Future annotations are used to identify and execute methods asynchronously.
If the method is annotated with “@future”, it will be executed when Salesforce has available resources.
➢ Ex:- Use it while making asynchronous web service callout to an external service.
Without the annotation, the Web service callout is made from the same thread that is executing the Apex code, and no
additional processing can occur until the callout is complete (synchronous processing).
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the different methods of batch Apex class?42
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are the different methods of batch Apex class?42
Database.Batchable interface contains three methods that must be implemented:
➢ Start method:
global (Database.QueryLocator | Iterable<sObject>) start(Database.BatchableContext bc) {}
➢ Execute method:
global void execute(Database.BatchableContext BC, list<P>){}
➢ Finish method:
global void finish(Database.BatchableContext BC){}
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is a Visaulforce component?43
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is a Visaulforce component?43
➢ A Visualforce Component is either a predefined (standard from component library) or custom component that determines
the user interface behavior.
➢ Example: <apex:detail>
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is trigger.new?44
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is trigger.new?44
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.
Whereas,
Trigger.old : Returns a list of the old versions of the sObject records. Note that this sObject list is only available in update
and delete triggers.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What all data types can a set store?45
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What all data types can a set store?45
Data in sets can be of any of the following types:
• Primitive types
• Collections
• sObjects
• User-defined types
• Built-in Apex types
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is an sObject type?46
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is an sObject type?46
➢ An sObject is any object that can be stored in the Force.com platform database.
Apex allows the use of generic sObject abstract type to represent any object.
➢ For ex:- Vehicle is generic type and Car, Motor Bike all are concrete types of Vehicle.
In SFDC, sObject is generic and Account, Opportunity, CustomObject__c are its concrete type.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is the difference between SOQL and SOSL?47
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is the difference between SOQL and SOSL?47
SOQL (Salesforce Object Query Language) SOSL (Salesforce Object Search Language)
Only one object can be searched at a time Many objects can be searched at a time
Can query any type of field Can query only on email, text or phone
Can be used in classes and triggers Can be used in classes, but not triggers
DML Operation can be performed on query results DML Operation cannot be performed on search results
Returns records Returns fields
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is an Apex transaction?
 What are the different exceptions in Apex?48
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is an Apex transaction?
 What are the different exceptions in Apex?48
➢ An Apex transaction represents a set of operations that are executed as a single unit.
All DML operations in a transaction either complete successfully, or if an error occurs, the entire transaction is rolled back.
➢ The different exceptions are: AsyncException, CalloutException, DmlException, EmailException, ExternalObjectException…
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_exception_methods.htm
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is the difference between public and global class in Apex?49
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What is the difference between public and global class in Apex?49
➢ Global class is accessible across the Salesforce instance irrespective of namespaces.
➢ Whereas, public classes are accessible only in the corresponding namespaces.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are getter methods and setter methods?50
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Salesforce Interview Questions & Answers
 What are getter methods and setter methods?50
➢ Get (getter) method is used to pass value from controller to VF page.
➢ While, set (setter) method is used to set the value back to controller variable.
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING
Course Details & Customer Reviews
Go to www.edureka.co/salesforce-foundation-combo
Get Edureka Certified in Salesforce Today!
What our learners have to say about us!
Zakiuddin says, “I am very thankful to the instructors and support
team who are helping the students to achieve their goals in all the
necessary and possible accepts. I, being an operations manager
will recommend Edureka as an exceptional place to learn.”
Jonathan Tribhuwan, Sr. Lead Associate says, “The instructors have
deep knowledge and simple ways to educate us. I especially liked the
way they take us through the SFDC platform instead of playing
through the PPT.”
Madhu Chetan, Siebel Consultant at Medtronic says, “Salesforce
class was interactive and the instructor was knowledgeable.
Customer support is really good and course content is well
documented.”
www.edureka.co/salesforce-foundation-comboEDUREKA’S SALESFORCE CERTIFICATION TRAINING

More Related Content

What's hot

Introducing the Salesforce platform
Introducing the Salesforce platformIntroducing the Salesforce platform
Introducing the Salesforce platformJohn Stevenson
 
What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...
What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...
What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...Edureka!
 
Configure, price and quote (CPQ) platform - Right information
Configure, price and quote (CPQ) platform - Right informationConfigure, price and quote (CPQ) platform - Right information
Configure, price and quote (CPQ) platform - Right informationRight Information
 
Salesforce Sales Cloud: Best Practices to Win More Deals
Salesforce Sales Cloud: Best Practices to Win More DealsSalesforce Sales Cloud: Best Practices to Win More Deals
Salesforce Sales Cloud: Best Practices to Win More DealsCloud Analogy
 
Sharing and setting in salesforce
Sharing and setting in salesforceSharing and setting in salesforce
Sharing and setting in salesforceVishesh Singhal
 
Salesforce online training || Salesforce Integration | salesforce lightning
Salesforce online training || Salesforce Integration | salesforce lightningSalesforce online training || Salesforce Integration | salesforce lightning
Salesforce online training || Salesforce Integration | salesforce lightningsuresh
 
Modern Development with Salesforce DX
Modern Development with Salesforce DXModern Development with Salesforce DX
Modern Development with Salesforce DXSalesforce Developers
 
Salesforce Integration Pattern Overview
Salesforce Integration Pattern OverviewSalesforce Integration Pattern Overview
Salesforce Integration Pattern OverviewDhanik Sahni
 
Salesforce interview questions walkthrough
Salesforce interview questions walkthroughSalesforce interview questions walkthrough
Salesforce interview questions walkthroughShivam Srivastava
 
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...Edureka!
 
Salesforce Communities
Salesforce CommunitiesSalesforce Communities
Salesforce CommunitiesSunil kumar
 
Salesforce Presentation
Salesforce PresentationSalesforce Presentation
Salesforce PresentationChetna Purohit
 
Salesforce sharing and visibility Part 1
Salesforce sharing and visibility Part 1Salesforce sharing and visibility Part 1
Salesforce sharing and visibility Part 1Ahmed Keshk
 
Ivan Gubynskyy Salesforce CRM and Platform Overview
Ivan Gubynskyy Salesforce CRM and Platform OverviewIvan Gubynskyy Salesforce CRM and Platform Overview
Ivan Gubynskyy Salesforce CRM and Platform OverviewLogeekNightUkraine
 
Introduction to Salesforce.com
Introduction to Salesforce.comIntroduction to Salesforce.com
Introduction to Salesforce.comEdureka!
 
What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...
What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...
What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...Edureka!
 

What's hot (20)

Introducing the Salesforce platform
Introducing the Salesforce platformIntroducing the Salesforce platform
Introducing the Salesforce platform
 
What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...
What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...
What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...
 
Configure, price and quote (CPQ) platform - Right information
Configure, price and quote (CPQ) platform - Right informationConfigure, price and quote (CPQ) platform - Right information
Configure, price and quote (CPQ) platform - Right information
 
Salesforce Sales Cloud: Best Practices to Win More Deals
Salesforce Sales Cloud: Best Practices to Win More DealsSalesforce Sales Cloud: Best Practices to Win More Deals
Salesforce Sales Cloud: Best Practices to Win More Deals
 
Sharing and setting in salesforce
Sharing and setting in salesforceSharing and setting in salesforce
Sharing and setting in salesforce
 
Salesforce online training || Salesforce Integration | salesforce lightning
Salesforce online training || Salesforce Integration | salesforce lightningSalesforce online training || Salesforce Integration | salesforce lightning
Salesforce online training || Salesforce Integration | salesforce lightning
 
Salesforce CPQ
Salesforce CPQSalesforce CPQ
Salesforce CPQ
 
Modern Development with Salesforce DX
Modern Development with Salesforce DXModern Development with Salesforce DX
Modern Development with Salesforce DX
 
Salesforce Integration Pattern Overview
Salesforce Integration Pattern OverviewSalesforce Integration Pattern Overview
Salesforce Integration Pattern Overview
 
Salesforce interview questions walkthrough
Salesforce interview questions walkthroughSalesforce interview questions walkthrough
Salesforce interview questions walkthrough
 
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...
Introduction to Salesforce | Salesforce Tutorial for Beginners | Salesforce T...
 
Salesforce Communities
Salesforce CommunitiesSalesforce Communities
Salesforce Communities
 
Salesforce PPT.pptx
Salesforce PPT.pptxSalesforce PPT.pptx
Salesforce PPT.pptx
 
Salesforce Presentation
Salesforce PresentationSalesforce Presentation
Salesforce Presentation
 
Salesforce sharing and visibility Part 1
Salesforce sharing and visibility Part 1Salesforce sharing and visibility Part 1
Salesforce sharing and visibility Part 1
 
Salesforce
SalesforceSalesforce
Salesforce
 
Ivan Gubynskyy Salesforce CRM and Platform Overview
Ivan Gubynskyy Salesforce CRM and Platform OverviewIvan Gubynskyy Salesforce CRM and Platform Overview
Ivan Gubynskyy Salesforce CRM and Platform Overview
 
Introduction to Salesforce.com
Introduction to Salesforce.comIntroduction to Salesforce.com
Introduction to Salesforce.com
 
What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...
What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...
What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...
 
Data model in salesforce
Data model in salesforceData model in salesforce
Data model in salesforce
 

Similar to Salesforce Interview Questions And Answers | Salesforce Tutorial | Salesforce Training | Edureka

Salesforce Certification | Salesforce Careers | Salesforce Training For Begin...
Salesforce Certification | Salesforce Careers | Salesforce Training For Begin...Salesforce Certification | Salesforce Careers | Salesforce Training For Begin...
Salesforce Certification | Salesforce Careers | Salesforce Training For Begin...Edureka!
 
Jax Salesforce Labs Day 2019 deck
Jax Salesforce Labs Day 2019 deckJax Salesforce Labs Day 2019 deck
Jax Salesforce Labs Day 2019 deckMarc Lester
 
Boost Your Career: Get Cloud-Trained and Certified
Boost Your Career: Get Cloud-Trained and CertifiedBoost Your Career: Get Cloud-Trained and Certified
Boost Your Career: Get Cloud-Trained and CertifiedSalesforce Developers
 
Communities Settings and Customize Community URL in Salesforce
Communities Settings and Customize Community URL in SalesforceCommunities Settings and Customize Community URL in Salesforce
Communities Settings and Customize Community URL in SalesforceWebkul Software Pvt. Ltd.
 
Vishal Dubey Resume.docx
Vishal Dubey Resume.docxVishal Dubey Resume.docx
Vishal Dubey Resume.docxVishal Dubey
 
Salesforce Training For Beginners | Salesforce Tutorial | Salesforce Training...
Salesforce Training For Beginners | Salesforce Tutorial | Salesforce Training...Salesforce Training For Beginners | Salesforce Tutorial | Salesforce Training...
Salesforce Training For Beginners | Salesforce Tutorial | Salesforce Training...Edureka!
 
Hands-On Workshop: Introduction to Coding for on Force.com for Admins and Non...
Hands-On Workshop: Introduction to Coding for on Force.com for Admins and Non...Hands-On Workshop: Introduction to Coding for on Force.com for Admins and Non...
Hands-On Workshop: Introduction to Coding for on Force.com for Admins and Non...Salesforce Developers
 
Manage Salesforce Like a Pro with Governance
Manage Salesforce Like a Pro with GovernanceManage Salesforce Like a Pro with Governance
Manage Salesforce Like a Pro with GovernanceSalesforce Admins
 
Dreamforce 2019 GG & Spring 20 release features - Halifax, Canada Community
Dreamforce 2019 GG & Spring 20 release features - Halifax, Canada CommunityDreamforce 2019 GG & Spring 20 release features - Halifax, Canada Community
Dreamforce 2019 GG & Spring 20 release features - Halifax, Canada CommunityPrag Ravichandran Kamalaveni (he/him)
 
Top10 Salesforce.com Admin Tools
Top10 Salesforce.com Admin ToolsTop10 Salesforce.com Admin Tools
Top10 Salesforce.com Admin Toolsdebm_madronasg
 
Salesforce is for Everyone.pptx
Salesforce is for Everyone.pptxSalesforce is for Everyone.pptx
Salesforce is for Everyone.pptxjenniferndlovu
 
Building Enterprise Apps Rapidly with Salesforce Mobile Packs Webinar
Building Enterprise Apps Rapidly with Salesforce Mobile Packs WebinarBuilding Enterprise Apps Rapidly with Salesforce Mobile Packs Webinar
Building Enterprise Apps Rapidly with Salesforce Mobile Packs WebinarSalesforce Developers
 
Salesforce for Beginners
Salesforce for BeginnersSalesforce for Beginners
Salesforce for BeginnersEdureka!
 
Syed mubin 3.2 years Exppersion in Salesforce
Syed mubin 3.2 years Exppersion in SalesforceSyed mubin 3.2 years Exppersion in Salesforce
Syed mubin 3.2 years Exppersion in Salesforcesyed mubin
 

Similar to Salesforce Interview Questions And Answers | Salesforce Tutorial | Salesforce Training | Edureka (20)

Salesforce tutorials
Salesforce tutorialsSalesforce tutorials
Salesforce tutorials
 
Sales force
Sales forceSales force
Sales force
 
Salesforce Certification | Salesforce Careers | Salesforce Training For Begin...
Salesforce Certification | Salesforce Careers | Salesforce Training For Begin...Salesforce Certification | Salesforce Careers | Salesforce Training For Begin...
Salesforce Certification | Salesforce Careers | Salesforce Training For Begin...
 
Jax Salesforce Labs Day 2019 deck
Jax Salesforce Labs Day 2019 deckJax Salesforce Labs Day 2019 deck
Jax Salesforce Labs Day 2019 deck
 
Boost Your Career: Get Cloud-Trained and Certified
Boost Your Career: Get Cloud-Trained and CertifiedBoost Your Career: Get Cloud-Trained and Certified
Boost Your Career: Get Cloud-Trained and Certified
 
Communities Settings and Customize Community URL in Salesforce
Communities Settings and Customize Community URL in SalesforceCommunities Settings and Customize Community URL in Salesforce
Communities Settings and Customize Community URL in Salesforce
 
What is Salesforce Developer?
What is Salesforce Developer?What is Salesforce Developer?
What is Salesforce Developer?
 
Vishal Dubey Resume.docx
Vishal Dubey Resume.docxVishal Dubey Resume.docx
Vishal Dubey Resume.docx
 
Salesforce Training For Beginners | Salesforce Tutorial | Salesforce Training...
Salesforce Training For Beginners | Salesforce Tutorial | Salesforce Training...Salesforce Training For Beginners | Salesforce Tutorial | Salesforce Training...
Salesforce Training For Beginners | Salesforce Tutorial | Salesforce Training...
 
Hands-On Workshop: Introduction to Coding for on Force.com for Admins and Non...
Hands-On Workshop: Introduction to Coding for on Force.com for Admins and Non...Hands-On Workshop: Introduction to Coding for on Force.com for Admins and Non...
Hands-On Workshop: Introduction to Coding for on Force.com for Admins and Non...
 
Manage Salesforce Like a Pro with Governance
Manage Salesforce Like a Pro with GovernanceManage Salesforce Like a Pro with Governance
Manage Salesforce Like a Pro with Governance
 
Salesforce
SalesforceSalesforce
Salesforce
 
Dreamforce 2019 GG & Spring 20 release features - Halifax, Canada Community
Dreamforce 2019 GG & Spring 20 release features - Halifax, Canada CommunityDreamforce 2019 GG & Spring 20 release features - Halifax, Canada Community
Dreamforce 2019 GG & Spring 20 release features - Halifax, Canada Community
 
Salesforce 11 yrs exp - Vinoth
Salesforce 11 yrs exp - VinothSalesforce 11 yrs exp - Vinoth
Salesforce 11 yrs exp - Vinoth
 
Top10 Salesforce.com Admin Tools
Top10 Salesforce.com Admin ToolsTop10 Salesforce.com Admin Tools
Top10 Salesforce.com Admin Tools
 
Salesforce is for Everyone.pptx
Salesforce is for Everyone.pptxSalesforce is for Everyone.pptx
Salesforce is for Everyone.pptx
 
resume
resumeresume
resume
 
Building Enterprise Apps Rapidly with Salesforce Mobile Packs Webinar
Building Enterprise Apps Rapidly with Salesforce Mobile Packs WebinarBuilding Enterprise Apps Rapidly with Salesforce Mobile Packs Webinar
Building Enterprise Apps Rapidly with Salesforce Mobile Packs Webinar
 
Salesforce for Beginners
Salesforce for BeginnersSalesforce for Beginners
Salesforce for Beginners
 
Syed mubin 3.2 years Exppersion in Salesforce
Syed mubin 3.2 years Exppersion in SalesforceSyed mubin 3.2 years Exppersion in Salesforce
Syed mubin 3.2 years Exppersion in Salesforce
 

More from Edureka!

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaEdureka!
 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaEdureka!
 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaEdureka!
 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaEdureka!
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaEdureka!
 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaEdureka!
 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaEdureka!
 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaEdureka!
 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaEdureka!
 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaEdureka!
 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | EdurekaEdureka!
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEdureka!
 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEdureka!
 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaEdureka!
 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaEdureka!
 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaEdureka!
 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Edureka!
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaEdureka!
 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaEdureka!
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | EdurekaEdureka!
 

More from Edureka! (20)

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | Edureka
 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | Edureka
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | Edureka
 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | Edureka
 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | Edureka
 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | Edureka
 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| Edureka
 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | Edureka
 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | Edureka
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | Edureka
 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | Edureka
 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | Edureka
 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | Edureka
 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | Edureka
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | Edureka
 

Recently uploaded

Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 

Recently uploaded (20)

Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 

Salesforce Interview Questions And Answers | Salesforce Tutorial | Salesforce Training | Edureka