function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Madhava SangamagramaMadhava Sangamagrama 

Platform Developer 1 Mock Questions

Hi, can someone help me out with the following questions. Any help would be appreciated. 


1. A developer is writing a visualforce page to display a list of the checkbox fields found on a custom object.
    What is the recommended mechanism the developer should use to accomplish this?
   A.Schema Builder
   B.Metadata API
   C.Apex API
   D.Schema class
 
2.  How can a developer modify a highly interactive V.F page to be very responsive and work  
       on both desktop mobile devices?
   A.Use <apex:includeScript> with the standerd Salesforce1 javascript library.
   B.Use <apex:includeScript> with a custom javascript library.
   C.Use <apex:actionRegion> tags
   D.use <apex:actionSupport> tags
 
3.  Which Statement is true regarding both flow and Lightning Process?
    A.Are able to embedded directly into V.F pages
    B.Can use Apex methods with the @InvoicableMethod annotation
   C.Are both server-side considerations in the order of Execution
   D.Can use Apex that implements the Process.Plugin interface
 
4. A developer receives LimitException; too many query row:50001 error when running code
   what debugging approach using the developer console provides the fastest and most accurate mechanism
    to identity component that may be recruiting an unexpected number of rows?
     A.Add (                      ) to the code to track SOQL Query
     B.Filter the debug log on
 
5. A developer must create a way external parents to submit millions of leads into salesforce per day. How should the developer meet this requirement?
      A.publicity expose an apex web service via Force.com sites
      B.Create a web service on Heroku that uses Heroku Connect
      C.Publicity expose a V.F page via Force.com sites
      D.Host a web-to-lead form on the company websites
 
6. Which statement is true about using Chatter in Apex?
     choose 2 ans
    A.Chatter in Apex rate limits match Chatter rest API rate limits
    B.Chatter in Apex methods honor the with sharing and without sharing keywords
    C.Posting a photo in chatter in Apex is synchronous and happens immediatly
    D.Chatter in Apex methods do not run in system mode they run in the context of the current user

7. What is a best practice when unit testing a controller?
    choose 2 ans
    A.simulate best interaction by leveraging text.setMock{}
    B.Set.query parameters by using get.parameters{}.put{}
    C.Access test data by using testalldatatrue
    D.verify correct page references by using get.URL{}.
 
 
 
John SavageJohn Savage
1. C
2. A
3. D
4. ?? 
5. B
6. not sure
7. A,B

Can you send me full list of mock questions to john1337savage @ gmail.com . Thanks.
swain 10swain 10
For Platform developer 1 , Adm 201 , Sales cloud , Service Cloud Dumps please Contact (swain7726@gmail.com)
Satyendra RawatSatyendra Rawat
Answer :-
1. D.Schema class
2.B.Use <apex:includeScript> with a custom javascript library.
3.B.Can use Apex methods with the @InvoicableMethod annotation
4.............Not complete questions.
5. B.Create a web service on Heroku that uses Heroku Connect
6.C and D.
7. B.Set.query parameters by using get.parameters{}.put{}
    D.verify correct page references by using get.URL{}. 


 
sri kumar 8sri kumar 8
anyone interested in dumps can email me at Srikanth9031@gmail.com, i have adm 201, platform developer 1, app builder, sales and service cloud, all of them updated to spring 17'
ravi kumar 772ravi kumar 772
Hi Guys

I cleared my Platform Developer I today.I have SU18 dumps reach out at ravikumarhope430@gmail.com

Regards,
Ravi
 
Thomas John 2Thomas John 2
You can contact me for any help and exact questions and answers for the latest Winter 20 certifications at salesforcecertguide2018[at]gmail.com
Thomas JohThomas Joh
You can contact me for any help and exact questions and answers for the latest Summer 20 certifications at salesforcecertguide2018[at]gmail.com. 100% pass rate. All exact screenshots and 100% accuracy. Trusted by many for passing all their exams.
Mathew T 10Mathew T 10
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
You can contact me for any help and exact questions and answers for the latest Summer 21 certifications at salesforcecertguide2018[at]gmail.com. 100% pass rate. All exact screenshots and 100% accuracy. Trusted by all for passing all their exams. One to one guidance provided for every exam till completion. Free training materials will also be provided.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Santhanalakshmi gSanthanalakshmi g
Hi,
Can someone help me out with the following questions,
1. While navigating through the desktop version of salesforce, you have navigated to a location in which you are not able to view the usual salesforce tabs. In which of the following locations/pages could you be in ?
a-Leads
b-Accounts
c-Opportunities
d-Reports

2. What is a typical development process that requires iterative building, testing, and staging before releasing to a production environment referred to in simpler terms?
a-Multi stage release
b-Evolutionary Release
c-Prototyping
d-Waterfall model release

3.In the position screen, there are two record types – technical and non-technical lead. A project manager creates a position with record type of technical lead with the department of IT. The record type is then changed to non-technical lead. What value will be displayed in the department field. What will happen if the record is edited?(
a-The Department value will not change.If the record is edited,the user will have the option to change the field to a non-technical lead value.
b-The department value will change
c-Manager cannot send the record time.
d-The Department value will not change. If the record is edited, the user will not have the option to change the field to a non-technical lead value.

4.You are in the market of service cloud and have almost settled on the lightning enterprise edition due to budget constraints. Which of the following features would you need to compromise on if you finally make the decision to purchase this edition?
a-Live Agent web chat
b-Workflow and approvals
c-Advanced case management features
d-None of the above

5.If you have to make large amount of setup changes in test environment, then making these changes using a web interface could take a long time. Which of the following tool instead of a web interface is used to suit this purpose?
a-Force.com IDE
b-Metadata API
c-Data Loader
d-Force.com migration tool

6.An organization runs their Replication Resource Every day at 6 PM. Sally makes a change A in the object at 4:30 and another change B at 5:30 . Which of these statements can be inferred from the given package?
a-Change A is registered but Change B is not detected
b-Change B is registered but Change A is not Detected
c-Both changes A and B are detected.
d-Neither changes A nor B are detected.

7.Which of the following entities cannot be set as a traced entity in Salesforce debug logs?
a-User
b-Apex class
c-Workflow
d-Apex Trigger

8.There is a validation rule written on an account that Account_SL_Number__c cannot be greater than 100. If the given code is executed in a developer console how many records will be created?
List<Account> aList = new List<Account>();
for(Integer i=0;i<200;i++){
Account a= new Account(Name='Test Account',Account_SL_Number__c=I);
aList.add(a);
}
Database.insert(aList,false);

a-0
b-100
c-101
d-200

9.For testing streaming API services, what needs to be done after selecting the Streaming API service to be tested?
a-Start the service
b-Subscribe to the service
c-Preview the service response
d-Parse service response

10.If you are handling the data migration for all your clients who want to switch from their legacy system to salesforce crm system. If a client comes with data model consisting of contacts and accounts and provides you with contact and account details(for export) in CSV format. Which of the following data migration methods will be best suited for the given purpose?
a-An ETL tool can be used
b-Create the external id for account and follow up with upserting data using data loader with the relationship intact.
c-Insert accounts into salesforce and then perform vlookup matching the legacy ID with salesforce ID.
d-Both a and b

11.You want to change the duration of the login lockout using the feature “lockout effective period”. For what type of portals, this service is not available?
a- Self service portals
b-Partner portals
c-Customer portals
d-It is available for all portals.

12.Which of the following object permissions cannot be applied to an Idea?
a-Edit
b-View all
c-Delete
d-Read

13.Amit is creating a visualforce page with standard controller set to “Account”.He wants to use standard “Delete” functionality and wants to have a custom implementation for “save”.Which is the best way to achieve this
a-Writing a extension for Account standard controller
b-Using standard controller and custom controller
c-Cant be achieved
d-Using custom controller, writing methods for save and Delete.Call save from custom delete method.

14.What is the maximum number of replication objects that can be created while running an extract?
a-10
b-15
c-20
d-50

15.which of the following search method is considered as best while searching for a component in salesforce?
a-Search by id
b-Search by name
c-Search by value
d-All of them are good practices

16.Workflow e-mail alerts can be created on which of the following objects?
A.All standard objects.
B.All custom objects
C.Accounts,Contacts,Leads and Opportunities
D.Contacts,cases and entitlements

a-Both A and B
b-Both B andC
c-Both C and D
d-All of the given options


17.A.)It is recommended to use a component event instead of an application event.
B.)It is not advisable to use dispatcher component to listen for an event when you have a large number of handler component instances listening for an event.
C.)Usage of anti-patterns should be avoided while using events.
Which of the above is not true in the context of using events in Salesforce lightning apps?
a-only A
b-Both A and B
c-Both A and C
d-All of them