Add office photos
Engaged Employer

Capgemini

3.7
based on 41.2k Reviews
Video summary
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by

20+ Auxilo Finserve Interview Questions and Answers

Updated 24 Dec 2024
Popular Designations

Q1. What are triggers and their use?

Ans.

Triggers are automated actions that are executed when a specific event occurs in a Salesforce database.

  • Triggers are used to perform custom actions before or after specific events, such as inserting, updating, or deleting records.

  • Triggers can be used to enforce business rules, validate data, or update related records.

  • Triggers are written in Apex code and can be used to extend the functionality of Salesforce beyond its standard capabilities.

  • For example, a trigger can be used to...read more

View 1 answer

Q2. How to invoke flows - using other flows and Apex. How do we invoke an apex class from a flow and pass variables?

Ans.

Flows can be invoked using other flows and Apex. Apex classes can be invoked from a flow by using invocable methods and passing variables as input parameters.

  • To invoke a flow from another flow, use the 'Launch Flow' element in the Flow Designer.

  • To invoke an Apex class from a flow, create an invocable method in the Apex class and annotate it with @InvocableMethod.

  • Pass variables from a flow to an Apex class by defining input parameters in the invocable method.

  • In the flow, use t...read more

Add your answer

Q3. Write a trigger on account to display child contacts Write a inline lightning component anything

Ans.

Trigger to display child contacts on account and inline lightning component

  • Create a trigger on Account object

  • Query for child Contact records related to the Account

  • Display the Contact records in a related list on the Account page layout

  • Create an inline lightning component to display additional information on the Account page

Add your answer

Q4. Tell me about trigger Governor limit Soql sosl Relationship in Salesforce

Ans.

Triggers are code that execute before or after specific events occur in Salesforce. Governor limits are limits on resources that a single transaction can consume. SOQL and SOSL are query languages used to search for data in Salesforce. Relationships define how objects are related to each other in Salesforce.

  • Triggers are used to automate processes in Salesforce

  • Governor limits prevent a single transaction from consuming too many resources

  • SOQL is used to search for data in a sin...read more

Add your answer
Discover Auxilo Finserve interview dos and don'ts from real experiences

Q5. What are API calls in Salesforce?

Ans.

API calls are requests made to Salesforce servers to retrieve or manipulate data.

  • API calls are used to integrate Salesforce with external systems

  • API calls can be made using SOAP, REST, or Bulk APIs

  • API calls are limited based on the edition of Salesforce and can be monitored in the Developer Console

  • Examples of API calls include retrieving data from Salesforce, creating new records, and updating existing records

Add your answer

Q6. What is difference between profile and permission sets

Ans.

Profiles define user's access to objects and fields while permission sets grant additional permissions to users.

  • Profiles are assigned to users and define their access to objects, fields, tabs, and other features.

  • Permission sets are used to grant additional permissions to users without changing their profiles.

  • Profiles are used to restrict access while permission sets are used to grant access.

  • Profiles are used to define the baseline access while permission sets are used to exte...read more

Add your answer
Are these interview questions helpful?

Q7. Why can't we create a master detail on contact as the child object

Ans.

Master-detail relationship on Contact as child object is not allowed due to data integrity concerns.

  • Contact is a standard object and cannot be a child object in a master-detail relationship

  • Master-detail relationships require the child object to have a lookup to the parent object

  • Contacts are often used as the primary object in many relationships, making it unsuitable as a child object

Add your answer

Q8. How to get the client id and secret of an external app in integration

Ans.

Client id and secret can be obtained by registering the external app in the integration platform

  • Register the external app in the integration platform (e.g. Salesforce)

  • Navigate to the app's settings or configuration page

  • Look for the client id and secret provided by the integration platform

  • Use the client id and secret in the app's authentication process

Add your answer
Share interview questions and help millions of jobseekers 🌟

Q9. What is the use of SOQL?

Ans.

SOQL is used to query data from Salesforce database.

  • SOQL stands for Salesforce Object Query Language.

  • It is used to retrieve data from Salesforce objects.

  • It supports filtering, sorting, and grouping of data.

  • It can be used in Apex code, Visualforce pages, and Lightning components.

  • Example: SELECT Name, AccountNumber FROM Account WHERE Industry = 'Technology'

Add your answer

Q10. What is child to parent communication in LWC?

Ans.

Child to parent communication in LWC allows a child component to communicate with its parent component.

  • Child components can dispatch custom events to communicate with parent components.

  • Parent components can listen for these custom events and handle them accordingly.

  • This communication pattern helps in passing data and triggering actions between components.

Add your answer

Q11. Write triggers for updating user email from contact emails.

Ans.

Write triggers to update user email from contact emails

  • Create a trigger on the User object

  • Query for related Contact records

  • Update User email field with Contact email

Add your answer

Q12. How to communicate between lwc components

Ans.

Communication between LWC components can be achieved using events, properties, and methods.

  • Use events to communicate between unrelated components

  • Use properties to pass data from parent to child components

  • Use methods to call functions in child components from parent components

Add your answer

Q13. How does LWC ensure data refresh

Ans.

LWC ensures data refresh by using Lightning Data Service and @wire decorator.

  • LWC uses Lightning Data Service to ensure data refresh without needing to write Apex code.

  • The @wire decorator in LWC allows for declarative data binding and automatic refresh when data changes.

  • LWC components can also manually refresh data using imperative Apex calls or by calling the refreshApex() method.

Add your answer

Q14. If account is deleted why contact record deletes

Ans.

When an account is deleted, the related contact record may also be deleted due to a cascading delete rule.

  • Contacts are often related to accounts in a one-to-many relationship

  • Cascading delete rules can be set up in the database to automatically delete related records

  • This helps maintain data integrity and prevent orphaned records

Add your answer

Q15. Count all number of contacts and display on account

Ans.

Use SOQL query to count number of contacts related to an account and display on account record

  • Use a SOQL query to count the number of contacts related to the account

  • Create a formula field on the account object to display the count of contacts

  • Use a trigger to update the count of contacts on the account whenever a contact is added or removed

Add your answer

Q16. What is Asynchronous Apex and its types.

Ans.

Asynchronous Apex allows you to run processes in the background, separate from the main transaction.

  • Types of Asynchronous Apex include Batch Apex, Queueable Apex, and Scheduled Apex.

  • Batch Apex is used to process large amounts of data asynchronously.

  • Queueable Apex allows you to add jobs to the Apex job queue to be processed asynchronously.

  • Scheduled Apex allows you to schedule Apex to run at a specific time.

Add your answer

Q17. How to connect other app in salesforce

Ans.

You can connect other apps in Salesforce using APIs and integrations.

  • Use Salesforce Connect to integrate external data sources

  • Utilize REST or SOAP APIs to connect with other apps

  • Leverage middleware tools like MuleSoft for seamless integrations

Add your answer

Q18. how to call child to parents

Ans.

To call child to parents, use the $A.getCallback() method in Salesforce Lightning Component development.

  • Use $A.getCallback() method to ensure that the child component is called after the parent component.

  • Pass the child component method as a parameter to $A.getCallback() to call it from the parent component.

  • Example: $A.getCallback().call(this, function(){ childComponentMethod(); });

Add your answer

Q19. What is salesforce?

Ans.

Salesforce is a cloud-based customer relationship management (CRM) platform that helps businesses manage their sales, customer service, marketing, and more.

  • Cloud-based CRM platform

  • Helps businesses manage sales, customer service, marketing, etc.

  • Offers various tools and features for automation and customization

  • Used by companies of all sizes across different industries

Add your answer

Q20. Best practices of apex

Ans.

Best practices of Apex

  • Use bulkification to process large data sets efficiently

  • Avoid SOQL queries inside loops to optimize performance

  • Handle exceptions gracefully using try-catch blocks

  • Use proper naming conventions for variables, classes, and methods

  • Write test classes to ensure code coverage and functionality

  • Use governor limits wisely to avoid hitting limits

  • Implement proper error handling and logging mechanisms

  • Follow coding standards and maintain code readability

  • Leverage Apex ...read more

Add your answer

Q21. Best practices of test class

Ans.

Best practices for writing test classes in Salesforce

  • Write test classes to cover at least 75% of your Apex code

  • Use the @isTest annotation to define a class as a test class

  • Create test data using the @testSetup annotation or by inserting records in the test method

  • Use System.assert methods to validate expected results

  • Test both positive and negative scenarios

  • Avoid hardcoding IDs and use the Test.getStandardPricebookId() method instead

  • Use Test.startTest() and Test.stopTest() to se...read more

Add your answer

Q22. Asynchronous apex scenarios

Ans.

Asynchronous apex scenarios involve executing code in the background to improve performance and user experience.

  • Asynchronous apex can be used for long-running processes, such as batch jobs or callouts to external systems.

  • It helps in avoiding governor limits by processing tasks in the background.

  • Examples include sending email notifications, updating records in bulk, and integrating with external APIs.

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Auxilo Finserve

based on 18 interviews
2 Interview rounds
Technical Round - 1
Technical Round - 2
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Salesforce Developer Interview Questions from Similar Companies

3.6
 • 30 Interview Questions
3.7
 • 30 Interview Questions
3.8
 • 24 Interview Questions
3.8
 • 18 Interview Questions
3.4
 • 13 Interview Questions
3.9
 • 12 Interview Questions
View all
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter