Filter interviews by
Design a scalable Flow solution for dynamic forms, modular subflows, and robust error handling in Salesforce.
Utilize dynamic forms with conditional visibility based on user input and record type to enhance user experience.
Create modular subflows for common tasks like validation and record creation, allowing reuse across multiple flows.
Implement complex decision trees using 'Decision' elements and asynchronous acti...
Designing an Apex Trigger for Project__c with complex requirements and scalability.
Use the TriggerHandler pattern for separation of concerns and maintainability.
Implement a static variable to control recursion and prevent infinite loops.
Utilize custom permissions to check user access before updating Status__c.
Aggregate values from related Project__c records to update the parent Account.
Design the trigger to handle...
Use try-catch block with generic Exception class to handle unknown runtime exceptions.
Use try-catch block with Exception class to catch all runtime exceptions.
Handle the exception gracefully by logging the error or displaying a user-friendly message.
Consider using a finally block to clean up any resources.
Example: try { // code that may throw exception } catch (Exception e) { // handle exception }
Salesforce offers various certifications for developers to showcase their expertise in different areas.
Salesforce Certified Platform Developer I
Salesforce Certified Platform Developer II
Salesforce Certified Commerce Cloud Digital Developer
Salesforce Certified Marketing Cloud Developer
test.startTest and test.stopTest are used in Salesforce to isolate and execute test code.
test.startTest and test.stopTest are used to isolate and execute test code within a specific context
test.startTest marks the beginning of a block of code that should be covered by a single test transaction
test.stopTest marks the end of that block and ensures that all asynchronous processes are completed before continuing
Using ...
LWC decorators enhance component functionality by managing properties, lifecycle, and data binding in Salesforce Lightning Web Components.
1. @api: Exposes a public property or method to the parent component. Example: @api myProperty; allows parent to set myProperty.
2. @track: Makes a property reactive, so changes trigger re-renders. Example: @track myList = []; myList.push('item'); updates UI.
3. @wire: Connects a ...
Trigger to assign or create a Test Account for Contacts without an associated Account.
Use an 'after insert' trigger on the Contact object.
Query for existing 'Test Account' to avoid duplicates.
If no Account is associated with the Contact, assign the existing 'Test Account'.
If no 'Test Account' exists, create one and associate it with the Contact.
Ensure to handle bulk inserts to avoid governor limits.
LDT stands for Long Data Type and has restrictions on its usage in Salesforce.
LDT is a custom field type in Salesforce used for storing large amounts of text data.
It has a limit of 131,072 characters per record.
LDT fields cannot be used in formula fields or workflow rules.
LDT fields are not searchable in Salesforce reports.
Use SOQL query to fetch the second maximum amount record of opportunity
Use ORDER BY clause to sort the records by amount in descending order
Use LIMIT 2 to fetch the top 2 records
Use OFFSET 1 to skip the first record and fetch the second maximum amount record
SOQL query to fetch contacts associated with an account
Use SELECT statement to retrieve fields from Contact object
Use WHERE clause to filter contacts associated with a specific Account Id
Example: SELECT Id, Name, Email FROM Contact WHERE AccountId = '001XXXXXXXXXXXXX'
I appeared for an interview before Jun 2024, where I was asked the following questions.
Designing an OmniScript for dynamic rendering, API integration, and data persistence in Salesforce.
Use conditional steps in OmniScript to show/hide sections based on user role and previous inputs.
Create reusable components for common UI elements to maintain consistency and reduce redundancy.
Implement integration procedures with error handling using Apex for OAuth2.0 authentication.
Utilize 'DataRaptor' to map and persis...
Strategy for securing and optimizing a high-traffic Experience Cloud site.
1. Use Profile and Permission Sets to restrict guest user access to specific objects and fields.
2. Implement Sharing Rules and Field-Level Security to ensure unauthorized records are not accessible.
3. Utilize Apex Managed Sharing for dynamic record sharing based on user context.
4. Leverage Lightning App Builder to create conditional navigation ba...
Design a scalable Flow solution for dynamic forms, modular subflows, and robust error handling in Salesforce.
Utilize dynamic forms with conditional visibility based on user input and record type to enhance user experience.
Create modular subflows for common tasks like validation and record creation, allowing reuse across multiple flows.
Implement complex decision trees using 'Decision' elements and asynchronous actions l...
Designing an Apex Trigger for Project__c with complex requirements and scalability.
Use the TriggerHandler pattern for separation of concerns and maintainability.
Implement a static variable to control recursion and prevent infinite loops.
Utilize custom permissions to check user access before updating Status__c.
Aggregate values from related Project__c records to update the parent Account.
Design the trigger to handle bulk...
I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.
Various notations in Spring include XML configuration, JavaConfig, and annotations.
XML configuration: uses XML files to define beans and their dependencies
JavaConfig: uses Java classes to define beans and their dependencies
Annotations: uses annotations like @Component, @Autowired, @Controller, etc. to define beans and their dependencies
I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.
Sharing rules in Salesforce control access to records for specified groups of users
Sharing rules are used to extend sharing access to users in public groups or roles
There are two types of sharing rules: Criteria-based sharing rules and Ownership-based sharing rules
Criteria-based sharing rules are based on the criteria specified in the rule
Ownership-based sharing rules are based on the record owner
SOQL query to fetch contacts associated with an account
Use SELECT statement to retrieve fields from Contact object
Use WHERE clause to filter contacts associated with a specific Account Id
Example: SELECT Id, Name, Email FROM Contact WHERE AccountId = '001XXXXXXXXXXXXX'
I appeared for an interview in Apr 2024.
I am a Salesforce Developer with experience in developing custom applications and integrations.
Developing custom Salesforce applications
Integrating Salesforce with external systems
Implementing automation using Process Builder and Flow
Creating custom reports and dashboards
Working on Salesforce Lightning components
LWC decorators enhance component functionality by managing properties, lifecycle, and data binding in Salesforce Lightning Web Components.
1. @api: Exposes a public property or method to the parent component. Example: @api myProperty; allows parent to set myProperty.
2. @track: Makes a property reactive, so changes trigger re-renders. Example: @track myList = []; myList.push('item'); updates UI.
3. @wire: Connects a prope...
Different types of flows in Salesforce include autolaunched flows, screen flows, and scheduled flows.
Autolaunched flows are triggered by a process or record change and do not require user interaction.
Screen flows guide users through a series of screens to collect information or make decisions.
Scheduled flows are triggered at a specific time or on a recurring schedule.
Example: Autolaunched flow to update a record when a...
Salesforce offers various certifications for developers to showcase their expertise in different areas.
Salesforce Certified Platform Developer I
Salesforce Certified Platform Developer II
Salesforce Certified Commerce Cloud Digital Developer
Salesforce Certified Marketing Cloud Developer
Trigger to assign or create a Test Account for Contacts without an associated Account.
Use an 'after insert' trigger on the Contact object.
Query for existing 'Test Account' to avoid duplicates.
If no Account is associated with the Contact, assign the existing 'Test Account'.
If no 'Test Account' exists, create one and associate it with the Contact.
Ensure to handle bulk inserts to avoid governor limits.
test.startTest and test.stopTest are used in Salesforce to isolate and execute test code.
test.startTest and test.stopTest are used to isolate and execute test code within a specific context
test.startTest marks the beginning of a block of code that should be covered by a single test transaction
test.stopTest marks the end of that block and ensures that all asynchronous processes are completed before continuing
Using these...
LDT stands for Long Data Type and has restrictions on its usage in Salesforce.
LDT is a custom field type in Salesforce used for storing large amounts of text data.
It has a limit of 131,072 characters per record.
LDT fields cannot be used in formula fields or workflow rules.
LDT fields are not searchable in Salesforce reports.
Use SOQL query to fetch the second maximum amount record of opportunity
Use ORDER BY clause to sort the records by amount in descending order
Use LIMIT 2 to fetch the top 2 records
Use OFFSET 1 to skip the first record and fetch the second maximum amount record
I appeared for an interview in Jun 2024.
Batch, trigger, apex, integration was asked,
Asked to write a lwc scenario
Asked find out whats wrong in a code, overall quite average
Top trending discussions
I applied via Walk-in and was interviewed in Apr 2020. There was 1 interview round.
Sales cloud is for managing sales while service cloud is for managing customer service.
Sales cloud is focused on managing the sales process, from lead generation to closing deals.
Service cloud is focused on managing customer service, from support cases to service level agreements.
Sales cloud includes features like lead and opportunity management, while service cloud includes features like case management and knowledge ...
I applied via Naukri.com and was interviewed in Jan 2020. There were 3 interview rounds.
Child records can be made read-only when parent record's field is updated using validation rules.
Create a validation rule on child object
Use ISCHANGED() function to check if parent field is updated
Use PRIORVALUE() function to get the previous value of parent field
Use ISBLANK() function to check if the previous value of parent field is blank
Use ISNEW() function to allow creation of child records
Use OR() function to comb...
To call a controller method from JavaScript in a Visualforce page, use the actionFunction tag.
Create a controller method in the Apex class.
Add an actionFunction tag in the Visualforce page.
Call the actionFunction from JavaScript using its name.
Pass parameters to the controller method using the actionFunction tag.
Use the rerender attribute to update the page after the controller method is called.
Collection variables are used to store multiple values of the same data type in Apex.
Collection variables include Lists, Sets, and Maps.
Lists are ordered collections of elements that can contain duplicates.
Sets are unordered collections of unique elements.
Maps are collections of key-value pairs.
Collection variables are useful for iterating over multiple values and performing operations on them.
Example: List<String&g...
Use data loader's parent-child functionality to load both parent and child records at once.
Create a CSV file with both parent and child records
Use the data loader's parent-child functionality to map the relationship between the two
Ensure that the parent records are loaded before the child records
Use the data loader's insert or upsert operation to load the data
Batch class and future method syntax in Salesforce development.
Batch class syntax: Implements Database.Batchable interface, has start(), execute() and finish() methods.
Future method syntax: Has @future annotation, returns void, takes parameters.
Example batch class syntax: public class MyBatch implements Database.Batchable
Example future method syntax: @future public static void myFutureMethod(String param) { ......
I applied via Naukri.com and was interviewed in Aug 2020. There was 1 interview round.
Classic is the old Salesforce UI while Lightning is the new modern UI.
Classic has a cluttered interface while Lightning has a cleaner and more intuitive interface.
Lightning has more features and customization options than Classic.
Lightning is optimized for mobile devices while Classic is not.
Lightning has a more modern look and feel compared to Classic.
Classic is being phased out by Salesforce in favor of Lightning.
Exa...
I am currently working as a Salesforce developer on a project to implement custom solutions for a client.
Developing custom Salesforce solutions based on client requirements
Creating Apex classes, triggers, and Visualforce pages
Integrating third-party applications with Salesforce using APIs
Some of the top questions asked at the Cloud SynApps interview -
based on 6 interview experiences
Difficulty level
Duration
based on 10 reviews
Rating in categories
Salesforce Developer
30
salaries
| ₹4.5 L/yr - ₹12 L/yr |
Technician
13
salaries
| ₹26.8 L/yr - ₹35 L/yr |
Senior Salesforce Developer
5
salaries
| ₹12 L/yr - ₹23.6 L/yr |
Automation Test Lead
4
salaries
| ₹30 L/yr - ₹32.5 L/yr |
Salesforce Consultant
4
salaries
| ₹15 L/yr - ₹21.5 L/yr |
TCS
Accenture
Wipro
Cognizant