Interview Question on Batch Apex
What is Asynchronous Apex? An asynchronous process is a process or function that executes a task “in the background” without the user having to wait for the task to… Read more »
What is Asynchronous Apex? An asynchronous process is a process or function that executes a task “in the background” without the user having to wait for the task to… Read more »
Sort List in Ascending Order We have two unsorted list, now we want to merge them together into one list and sort them. l1 = 4,9,3 l2 = 2,7,5 Solution… Read more »
Inheritance in Apex is a mechanism in which one object acquires all the properties and behaviors of a parent object. The idea behind inheritance is that you can create new… Read more »
The selection sort algorithm sorts a list by repeatedly finding the minimum element (considering ascending order) from unsorted part and putting it at the beginning. In sorting algorithm list is… Read more »
What is difference between screen flow and auto launched flow? Screen Flow-Requires user interaction, because it includes screens, local actions, steps, choices, or dynamic choices. Screen flows don’t support Pause… Read more »
Trigger to Prevent Duplicate Contacts Using Email or Phone Number We checked in earlier post how to prevent creating duplicate Records if one field is same. Now in case of… Read more »
When user tries to insert Account with name which already used in another existing account ,User should be presented with Error. There are multiple approach to do same question: Let’s… Read more »