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 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
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...
Top trending discussions
I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.
I applied via Recruitment Consulltant and was interviewed before Nov 2021. There were 2 interview rounds.
I applied via Naukri.com and was interviewed in Sep 2021. There were 2 interview rounds.
I applied via Naukri.com and was interviewed in Jan 2020. There were 3 interview rounds.
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
| ₹11.4 L/yr - ₹21.3 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