Category: Salesforce Certification

How to Study for Salesforce Integration Architect Certification

How to study for the Salesforce Integration Architect Certification Exam will be discussed in this blog post today. The Salesforce Certified Integration Architect exam evaluates the integration requirements to develop safe, scalable solutions integrating the Salesforce platform. The architect is skilled in creating complicated integration patterns, integrating them into a variety of platforms, and communicating the solution’s trade-offs to both business and technical stakeholders. I passed this exam on March 9th, 2022 and here in this blog post, I am going to share my notes which helped me in understanding and mastering the concepts covered in this exam. You...

Read More

How to Pass Salesforce Certified Associate Exam

To all the newcomers to Salesforce, in this blog, I am going to share my study notes regarding  Salesforce Associate certification. Salesforce has a lot of great certification options, and they recently announced the new Associate certification! You might want to check out my other blog regarding “How to pass Salesforce Certified Business Analyst Certification” I passed this exam on September 14th, 2022 and here in this blog post, I am going to share my notes which helped me to crack this one. You can get notes about my other certifications below Salesforce Certification Notes About the Exam Content:...

Read More

How to Pass Salesforce Business Analyst Certification Exam

In the implementation of any Salesforce project, business analysts are crucial. They collaborate with stakeholders, work with the technical teams, make sure the solution is tested, change logs are recorded, and UAT is properly carried out. They are truly the show’s stars. There is a huge demand for business analyst positions currently in the market. The average pay is $84,000. Salesforce has a lot of great certification options, and they recently announced the new Business Analyst certification! I passed this exam yesterday (July 18th, 2022) and here in this blog post, I am going to share my notes which...

Read More

Sorting Arrays in JavaScript

 Like any programming language, JavaScript also provides ways to sort arrays. Different JavaScript engines implement this method using different sort algorithms. For example -Safari: Quicksort, Merge Sort, or Selection SortV8: Quicksort, or Insertion SortFirefox: Merge SortBut in reality, it doesn’t really matter much as long as the arrays are getting sorted.Note – I am putting my JavaScript Developer study notes here. The prototype for Sort method available in Array class is:Array.sort([compareFunction])Normally a callback function is passed which makes the sorting logic i.e. how the two numbers will be compared. This callback function should take two parameters i.e. param1 and param2 and works like this -callback function will return zero when both param1 and param2 are treated as equalcallback function will return 1 when both param1 is smaller than param2 callback function will return 11 when both param2 is smaller than param1Note – In default sorting, param1 and param2 are always converted into Strings and then they will be sorted alphabetically.For example, if we consider the below examplelet numbers = [100, 23, 45, 12, 99];let sortedNumbers = numbers.sort();console.log(sortedNumbers);Output: [ 100, 12, 23, 45, 99 ]But that’s not the correct sorting. The reason behind is that numbers here are converted into Strings and then sorted alphabetically due to default sorting.To solve this we need to pass the callback function which will define the comparison logic. Below is the modified code -let numbers = [100, 23, 45, 12, 99];let...

Read More

Service Cloud Consultant Certification Guide and Tips

IntroductionThe Salesforce Certified Service Cloud Consultant certification is designed for consultants who have experience implementing Salesforce Service Cloud solutions in a customer-facing role. This is a highly scenario-based certification exam. So hands-on experience in implementing Service Cloud will provide the edge in clearing this certification. Ideal Candidate for this CertificationCustomer-facing consultants who have experience in implementing Service Cloud solutions are the ideal candidates for this certification. As this certification will include a lot of scenario-based questions covering the service industry, so consultants with contact center industry experience will find the certification helpful for their domain. Any Salesforce admins who want to prove their advanced knowledge on the platform can also sit for this certification. Exam guidesYou can download the exam guide from here. It is always highly recommended to go through the exam guides number of times.About the examThere will be a total of 60 multiple-choice/multiple-select questions and 5 non-scored questions. (These 5 non-scored questions will be randomly spread, so you will not know which ones are non-scored questions).Time: 105 minutes.Passing score: 67%Registration fee: USD 200, plus applicable taxes.Retake fee: USD 100, plus applicable taxes.Prerequisite: Salesforce Administrator credential. (Here is my post regarding guides and tips to clear Salesforce Administrator certification).Topic BreakdownStudy StrategyIn order to clear this certification, you need to know both the technical details of the product as well as the domain knowledge, the business value it offers.  As...

Read More
Loading