You need to sign in to do that
Don't have an account?

Platform Dev-1 questions
Hi,
Can you please help me out by answering these questions.
A company wants a recruiting app that models candidates and interviews; displays the total number of interviews on each candidate record; and defines security on interview records that is independent from the security on candidate records.What would a developer do to accomplish this task?
Choose 2 answers.
A) Create a lookup relationship between the Candidate and Interview objects.
B) Create a trigger on the Interview object that updates a field on the Candidate object
C) Create a roll-up summary field on the Candidate object that counts Interview records.
D) Create a master-detail relationship between the Candidate and Interview objects.
Hoping the Ans as :A,B
2) In the Lightning Component framework, which resource can be used to fire events?ans: A,B
Choose 2 answers
Third-party Javascript code.
Javascript controller actions.
Visualforce controller actions.
Third-party web service code.
Hoping as Ans: A,B
3) What is a capability of formula fields?
Choose 3 answer
A) Generate a link using the HIPERLINK function to a specific record in a legacy system
B) Determine if a datetime field has passed using the NOW function
C) Determine which of three different images to display using IF function
D) Return and display a field value from another object using the VLOOKUP function
E) Display the previous value for a field using the PRIORVALUE funtion
I think Ans: B,C,D
4)A developer wants to display all the available record types for a case Object. The developer also wants to display the picklist values for the Case.Status field. The Case Object and the Case.Status field are on a Custom Visualforce page.
Which action can the developer perform to get the record types and picklist values in the controller?
Choose 2 answers.
Use Schema.PicklistEntry returned by Case.Status.getDescribe().getPicklistValues()
Use Schema.RecordTypeInfo returned by Case.sObjectType.getDescribe().getRecordTypeInfos()
Use SOQL to query Case records in the org to get all values for the Status picklist field
Use SOQL to query Case records in the org to get all the RecordType values available for Case
I think Ans:A,B
5) A developer writes a SOQL query to find child records for a specific parent. Ans:5
How many levels can be returned in a single query?
A. 1
B. 7
C. 5
D. 3
Confused between option A and C.Please clarify these questions.
Thanks in advance for your help.
Can you please help me out by answering these questions.
A company wants a recruiting app that models candidates and interviews; displays the total number of interviews on each candidate record; and defines security on interview records that is independent from the security on candidate records.What would a developer do to accomplish this task?
Choose 2 answers.
A) Create a lookup relationship between the Candidate and Interview objects.
B) Create a trigger on the Interview object that updates a field on the Candidate object
C) Create a roll-up summary field on the Candidate object that counts Interview records.
D) Create a master-detail relationship between the Candidate and Interview objects.
Hoping the Ans as :A,B
2) In the Lightning Component framework, which resource can be used to fire events?ans: A,B
Choose 2 answers
Third-party Javascript code.
Javascript controller actions.
Visualforce controller actions.
Third-party web service code.
Hoping as Ans: A,B
3) What is a capability of formula fields?
Choose 3 answer
A) Generate a link using the HIPERLINK function to a specific record in a legacy system
B) Determine if a datetime field has passed using the NOW function
C) Determine which of three different images to display using IF function
D) Return and display a field value from another object using the VLOOKUP function
E) Display the previous value for a field using the PRIORVALUE funtion
I think Ans: B,C,D
4)A developer wants to display all the available record types for a case Object. The developer also wants to display the picklist values for the Case.Status field. The Case Object and the Case.Status field are on a Custom Visualforce page.
Which action can the developer perform to get the record types and picklist values in the controller?
Choose 2 answers.
Use Schema.PicklistEntry returned by Case.Status.getDescribe().getPicklistValues()
Use Schema.RecordTypeInfo returned by Case.sObjectType.getDescribe().getRecordTypeInfos()
Use SOQL to query Case records in the org to get all values for the Status picklist field
Use SOQL to query Case records in the org to get all the RecordType values available for Case
I think Ans:A,B
5) A developer writes a SOQL query to find child records for a specific parent. Ans:5
How many levels can be returned in a single query?
A. 1
B. 7
C. 5
D. 3
Confused between option A and C.Please clarify these questions.
Thanks in advance for your help.
2. B, C. control through custom JS or Visualforce controller
3. A, B, C. VLOOKUP field is only available in validation rules. PRIORVALUE is also not available in formula fields
4. A, B
5. C. You can return up to 5 levels of parent objects though relationship query. for exampl [SELECT ParetnId, Parent.ParentId, Parent.Parent.ParentId], etc
Mark as best answer if this answers your question
#3, I'm pretty sure it's B,C,D
#4 is A,D (the question is in two parts use a normal SQL query to get record types
#5 A (You're going to child not parent, so only one child). IE you can go [SELECT Name (SELECT Name FROM Contact) FROM Account];
3. VLOOKUP is only available in validation rules
4. To get all record types available for the Case, you would have to query the recordType object, not the case object.
5. My bad, i didn't read the child part. Mathew is correct its 1.
https://developer.salesforce.com/docs/atlas.en-us.200.0.lightning.meta/lightning/intro_events.htm
Its mostly javascript controllers, also given that it's probably also a 3rd party webservice as indicated here:
https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/events_external.htm
Personally, I'd like to inquiry why A would be the incorrect answer, but documentation wise seems to points B, D
Annnd that's all I know lol.
Once again Thank You!! :)
2. A.B third party javascript and javascript controller actions
3. A, B, C. VLOOKUP field is only available in validation rules. PRIORVALUE is also not available in formula fields
4. A, B
5. A
I did not successfully complete the exam DEV-1 (450), and I'm looking for questions to study to the exam. Do you have more questions about DEV-1?
Thank you
Hi Prasanna, Do you have question dumps for Platform Dev-1 ?
Thank you and cheers.
we will contact you for dumps.
Thanks
Can you please help me out by answering this question.
1. which three resources in a lightning Component Bundle can contain Javascript Functions:
Choose three Answer
a.Helper
b.Rendered
c.Controller
d.desion
e.style
I hope the ans is Helper ,Rendered and Controller .
Helper ,Rendered and Controller is correct. A component Bundle can contain Style also, but in the question they asked the Javascript fucntions, in style we can'r call the java script functions.
https://developer.salesforce.com/docs/atlas.en-us.220.0.lightning.meta/lightning/components_bundle.htm
Thanks,
Naren
Can you please help me out by answering this question
Q. which type of code represent the model the Model in the MVC architecture on Fore.com platform.
1. Controller Extension method that saves a list of account records.
2. Custom Javascript that processes a list of Account records.
3.A Controller Extension method that used SOQl to query for a list of Account records.
4.A list of Account records returned from a controller Extension method.
Q2. In the code below , which type does string inherit from?
String s ='Hello World' ;
1.Protoype
2.Class
3.sObject
4.Object
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/langCon_apex_primitives.htm
All Apex data types inherit from Object.
Thanks,
Naren
I have mailed you PLease check and thank you.
Have one question -
Can you please help me out by answering this question
Q. A developer declared a class as follows:
public class wysing{
// properties and methods including DML
}
Which invocation of a class methods will obey the OWD and sharing setting for the running user in the Salesorce organization?
A . An Apex trigger that invokes a helper method in this class.
B. A user on an external system that has an API call into Salesforce that invoke a method in this class.
C .A visualForce page with an Apex controller that invokes a methods in this class.
d. A developer using the Developer console that invokes a methods in this class from the excecute anonymous
window .
For all latest salesforce certification dumps mail us at salesforceworldwide@gmail.com
If you need help on any superbadge or salesforce certification mail us at salesforceworldwide@gmail.com
We have Following latest certification of
1. Admin 201
2. App Builder
3. Platform developer 1
4. Platform Developer 2
5. Sales Cloud
6. Service Cloud
7. Community Cloud
8. Marketing cloud Email Specialist
9. Marketing cloud Cloud Consultant
10. CPQ
11. FSL
12. Data Management Architecture
14. Integration architecture
15. Identity Access management
16. Development Lifecycle
17. Pardot Specialist/Consultant
19. Advance Admin
20. Sharing Visibilty Designer
21. Einstein Analytics
22. Non- Profit Cloud
For all latest salesforce certification dumps mail us at salesforceworldwide@gmail.com
If you need help on any superbadge or salesforce certification mail us at salesforceworldwide@gmail.com
We have Following latest certification of
1. Admin 201
2. App Builder
3. Platform developer 1
4. Platform Developer 2
5. Sales Cloud
6. Service Cloud
7. Community Cloud
8. Marketing cloud Email Specialist
9. Marketing cloud Cloud Consultant
10. CPQ
11. FSL
12. Data Management Architecture
14. Integration architecture
15. Identity Access management
16. Development Lifecycle
17. Pardot Specialist/Consultant
19. Advance Admin
20. Sharing Visibilty Designer
21. Einstein Analytics
22. Non- Profit Cloud
Can you please help me out by answering this question
Q. A developer declared a class as follows:
public class wysing{
// properties and methods including DML
}
Which invocation of a class methods will obey the OWD and sharing setting for the running user in the Salesorce organization?
A . An Apex trigger that invokes a helper method in this class.
B. A user on an external system that has an API call into Salesforce that invoke a method in this class.
C .A visualForce page with an Apex controller that invokes a methods in this class.
d. A developer using the Developer console that invokes a methods in this class from the excecute anonymous
window .
Ans : D
Q. which type of code represent the model the Model in the MVC architecture on Fore.com platform.
1. Controller Extension method that saves a list of account records.
2. Custom Javascript that processes a list of Account records.
3.A Controller Extension method that used SOQl to query for a list of Account records.
4.A list of Account records returned from a controller Extension method.
Q2. In the code below , which type does string inherit from?
String s ='Hello World' ;
1.Protoype
2.Class
3.sObject
4.Object
Ans : 4
If you need help on any superbadge or salesforce certification mail us at salesforceworldwide@gmail.com
We have Following latest certification of
1. Admin 201
2. App Builder
3. Platform developer 1
4. Platform Developer 2
5. Sales Cloud
6. Service Cloud
7. Community Cloud
8. Marketing cloud Email Specialist
9. Marketing cloud Cloud Consultant
10. CPQ
11. FSL
12. Data Management Architecture
14. Integration architecture
15. Identity Access management
16. Development Lifecycle
17. Advance Admin
18. Sharing Visibilty Designer
19. Einstein Analytics
For all latest salesforce certification dumps mail us at ebsosedotcom@gmail.com
If you need help on any superbadge or salesforce certification mail us at ebsosedotcom@gmail.com (mailto:ebsosedotcom@gmail.com" style="color:blue; text-decoration:underline)
SPRING 20, Winter 20 Dumps all Available
We have Following latest certification of
0. B2B Commerce Admin
1. Admin 201
2. App Builder
3. Platform developer 1
4. Platform Developer 2
5. Sales Cloud
6. Service Cloud
7. Community Cloud
8. Marketing cloud Email Specialist
9. Marketing cloud Cloud Consultant
10. CPQ
11. FSL
12. Data Management Architecture
13. Integration architecture
14. Identity Access management
15. Development Lifecycle
16. Pardot Specialist/Consultant
17. Advance Admin
18. Sharing Visibilty Designer
19. Einstein Analytics
20. Non- Profit Cloud
For all latest salesforce certification dumps mail us at salesforceworldwide@gmail.com
If you need help on any superbadge or salesforce certification mail us at salesforceworldwide@gmail.com
24*7 fast responses to all queries
We have Following latest certification of
1. Admin 201
2. App Builder
3. Platform developer 1
4. Platform Developer 2
5. Sales Cloud
6. Service Cloud
7. Community Cloud
8. Marketing cloud Email Specialist
9. Marketing cloud Cloud Consultant
10. CPQ
11. FSL
12. Data Management Architecture
14. Integration architecture
15. Identity Access management
16. Development Lifecycle
17. Advance Admin
18. Sharing Visibilty Designer
19. Einstein Analytics
Project support and Salesforce training is also provided for Admin , Development , Integration , CPQ and QA at www.ebsose.com .
For all latest salesforce certification SU20 materials mail us at ebsosedotcom@gmail.com
If you need help on any superbadge or salesforce certification mail us at ebsosedotcom@gmail.com
Summer 20 Dumps all Available
We have Following latest certification of
0. B2B Commerce Admin
1. Admin 201
2. App Builder
3. Platform developer 1
4. Platform Developer 2
5. Sales Cloud
6. Service Cloud
7. Community Cloud
8. Marketing cloud Email Specialist
9. Marketing cloud Cloud Consultant
10. CPQ
11. FSL
12. Data Management Architecture
13. Integration architecture
14. Identity Access management
15. Development Lifecycle
16. Pardot Specialist
17. Advance Admin
18. Sharing Visibilty Designer
19. Einstein Analytics
20. Non- Profit Cloud
21. Marketing cloud developer 1
For all latest salesforce certification dumps mail us at allrecentdumps@gmail.com
If you need help on any superbadge or salesforce certification mail us at allrecentdumps@gmail.com
24*7 AND IMMEDIATE DELIVERY OF DUMPS.
All Summer 20 Dumps are available. We have Following latest certification of
• Copado Admin
• Copado Developer
• Vlocity Platform Essential
• B2B Commerce Admin
• Javascript Developer 1 Dumps
• Admin 201
• App Builder
• Platform developer 1
• Platform Developer 2
• Sales Cloud
• Service Cloud
• Community Cloud
• Marketing cloud Email Specialist
• Marketing cloud Cloud Consultant
• Marketing Cloud Admin
• Marketing Cloud Developer
• CPQ Specialist
• Field Service Lightning
• Data Management Architecture
• Integration architecture
• Identity Access management
• Development Lifecycle
• Pardot Specialist
• Advance Admin
• Sharing Visibilty Designer
• Einstein Analytics
• Admin 201
• App Builder
• Platform developer 1
• Platform Developer 2
• Sales Cloud
• Service Cloud
• Community Cloud
• Marketing cloud Email Specialist
• Marketing cloud Cloud Consultant
• Marketing Cloud Admin
• Marketing Cloud Developer
• CPQ Specialist
• Field Service Lightning
• Data Management Architecture
• Integration architecture
• Identity Access management
• Development Lifecycle
• Pardot Specialist
• Advance Admin
• Sharing Visibilty Designer
• Einstein Analytics
• Copado Admin
• Copado Developer
• Vlocity Platform Essential
• B2B Commerce Admin
• Javascript Developer 1 Dumps
Prepare for Salesforce Certification from website: https://www.directdumps.com. Available 24*7 Support. Immediate Delivery.
For all latest salesforce certification SP21 materials mail us at dumpsmojo@gmail.com
Spring 21 Dumps all Available
We have Following latest certification of
1. Admin 201
2. App Builder
3. Platform developer 1
4. Platform Developer 2
5. Sales Cloud
6. Service Cloud
7. Community Cloud
8. Marketing cloud Email Specialist
9. Marketing Cloud Consultant
10. CPQ Specialist
11. JavaScript developer 1
12. Data Management Architecture
13. Integration architecture
14. Identity Access management
15. Development Lifecycle
16. Pardot Specialist
17. Advance Admin
18. Sharing Visibilty Designer
19. Einstein Analytics
20. Marketing cloud Admin
21. Marketing cloud developer 1
22. Vlocity /copado dumps
23. Vlocity Consultant
24. Vlocity CPQ Dumps
Amazon AWS dumps and Azure latest dumps are also available on directdumps.com
You can contact me for any help and exact questions and answers for the latest Summer 21 certifications at salesforcecertguide2018@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.
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
You can contact me for any help and exact questions and answers for the latest Summer 21 certifications at salesforcecertguide2018@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.
• Admin 201
• App Builder
• Platform developer 1
• Platform Developer 2
• Sales Cloud
• Service Cloud
• Community Cloud
• Marketing cloud Email Specialist
• Marketing cloud Cloud Consultant
• Marketing Cloud Admin
• Marketing Cloud Developer
• CPQ Specialist
• Field Service Lightning
• Data Management Architecture
• Integration architecture
• Identity Access management
• Development Lifecycle
• Pardot Specialist
• Advance Admin
• Sharing Visibilty Designer
• Einstein Analytics
• Javascript Developer 1 Dumps
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
You can contact me for any help and exact questions and answers for the latest Summer 21 certifications at salesforcecertguide2018@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.
• Admin 201
• App Builder
• Platform developer 1
• Platform Developer 2
• Sales Cloud
• Service Cloud
• Community Cloud
• Marketing cloud Email Specialist
• Marketing cloud Cloud Consultant
• Marketing Cloud Admin
• Marketing Cloud Developer
• CPQ Specialist
• Field Service Lightning
• Data Management Architecture
• Integration architecture
• Identity Access management
• Development Lifecycle
• Pardot Specialist
• Advance Admin
• Sharing Visibilty Designer
• Einstein Analytics
• Javascript Developer 1 Dumps
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
You can contact me for any help and exact questions and answers for the latest Summer 21 certifications at salesforcecertguide2018@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.
• Admin 201
• App Builder
• Platform developer 1
• Platform Developer 2
• Sales Cloud
• Service Cloud
• Community Cloud
• Marketing cloud Email Specialist
• Marketing cloud Cloud Consultant
• Marketing Cloud Admin
• Marketing Cloud Developer
• CPQ Specialist
• Field Service Lightning
• Data Management Architecture
• Integration architecture
• Identity Access management
• Development Lifecycle
• Pardot Specialist
• Advance Admin
• Sharing Visibilty Designer
• Einstein Analytics
• Javascript Developer 1 Dumps
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
You can contact me for any help and exact questions and answers for the latest Summer 21 certifications at salesforcecertguide2018@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.
• Admin 201
• App Builder
• Platform developer 1
• Platform Developer 2
• Sales Cloud
• Service Cloud
• Community Cloud
• Marketing cloud Email Specialist
• Marketing cloud Cloud Consultant
• Marketing Cloud Admin
• Marketing Cloud Developer
• CPQ Specialist
• Field Service Lightning
• Data Management Architecture
• Integration architecture
• Identity Access management
• Development Lifecycle
• Pardot Specialist
• Advance Admin
• Sharing Visibilty Designer
• Einstein Analytics
• Javascript Developer 1 Dumps
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Please mail us at prajeeshsingh7125@gmail.com SUMMER 21 Dumps,
Administrator 201 (ADM201)
Platform App Builder (CRT403)
Platform Developer 1 (CRT450)
Platform Developer 2
The latest dumps are available, Contact us on prajeeshsingh7125@gmail.com
You can contact me for any help and exact questions and answers for the latest Summer 21 certifications at salesforcecertguide2018@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.
• Admin 201
• App Builder
• Platform developer 1
• Platform Developer 2
• Sales Cloud
• Service Cloud
• Community Cloud
• Marketing cloud Email Specialist
• Marketing cloud Cloud Consultant
• Marketing Cloud Admin
• Marketing Cloud Developer
• CPQ Specialist
• Field Service Lightning
• Data Management Architecture
• Integration architecture
• Identity Access management
• Development Lifecycle
• Pardot Specialist
• Advance Admin
• Sharing Visibilty Designer
• Einstein Analytics
• Javascript Developer 1 Dumps
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
You can contact me for any help and exact questions and answers for the latest Winter 22 certifications at salesforcecertguide2018@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.
• Admin 201
• App Builder
• Platform developer 1
• Platform Developer 2
• Sales Cloud
• Service Cloud
• Community Cloud
• Marketing cloud Email Specialist
• Marketing cloud Cloud Consultant
• Marketing Cloud Admin
• Marketing Cloud Developer
• CPQ Specialist
• Field Service Lightning
• Data Management Architecture
• Integration architecture
• Identity Access management
• Development Lifecycle
• Pardot Specialist
• Advance Admin
• Sharing Visibilty Designer
• Einstein Analytics
• Javascript Developer 1 Dumps
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
You can contact me for any help and exact questions and answers for the latest Winter 22 certifications at salesforcecertguide2018@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.
• Admin 201
• App Builder
• Platform developer 1
• Platform Developer 2
• Sales Cloud
• Service Cloud
• Community Cloud
• Marketing cloud Email Specialist
• Marketing cloud Cloud Consultant
• Marketing Cloud Admin
• Marketing Cloud Developer
• CPQ Specialist
• Field Service Lightning
• Data Management Architecture
• Integration architecture
• Identity Access management
• Development Lifecycle
• Pardot Specialist
• Advance Admin
• Sharing Visibilty Designer
• Einstein Analytics
• Javascript Developer 1 Dumps
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Interested person do contact me for perfect career level - leninraj2017@gmail.com