Premium Employer

i

This company page is being actively managed by Infosys Team. If you also belong to the team, you can get access from here

Infosys Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 36.9k Reviews

Filter interviews by

Infosys Salesforce Consultant Lead Interview Questions and Answers for Experienced

Updated 12 Jun 2024

Infosys Salesforce Consultant Lead Interview Experiences for Experienced

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is junction object
  • Ans. 

    Junction object is a custom object in Salesforce used to create many-to-many relationships between objects.

    • Acts as a bridge between two objects in a many-to-many relationship

    • Contains two master-detail relationships

    • Allows for cross-object reporting and roll-up summary fields

  • Answered by AI

Skills evaluated in this interview

Salesforce Consultant Lead Jobs at Infosys

View all

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Job Portal and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(16 Questions)

  • Q1. Introduce yourself.
  • Q2. Explain your role in current project
  • Q3. Can we use multiple decorators in Lwc on a property? Answer is No
  • Q4. What are the decorators in Lwc and its uses?
  • Q5. What is promise and promiseAll?
  • Ans. 

    Promise is an object representing the eventual completion (or failure) of an asynchronous operation, and promiseAll is a method that takes an iterable of promises and returns a single Promise that resolves when all of the promises have resolved.

    • Promise is used in JavaScript to handle asynchronous operations.

    • It represents a value that may not be available yet, but will be resolved at some point in the future.

    • PromiseAll ...

  • Answered by AI
  • Q6. How connection is done from Mulesoft to Salesforce
  • Ans. 

    Connection from Mulesoft to Salesforce is done using Salesforce Connector in Mulesoft Anypoint Platform.

    • Use Salesforce Connector in Mulesoft Anypoint Platform to establish connection

    • Authenticate using Salesforce credentials (username, password, security token)

    • Utilize Salesforce APIs to interact with Salesforce data

  • Answered by AI
  • Q7. What is connected App, remote site settings and OAuth?
  • Ans. 

    Connected App, remote site settings, and OAuth are key components in Salesforce for enabling secure external access to Salesforce data and functionality.

    • Connected App is a framework that enables external applications to securely integrate with Salesforce using APIs.

    • Remote Site Settings allow Salesforce to make callouts to external services over HTTPS.

    • OAuth is an open standard for access delegation, commonly used in Sal...

  • Answered by AI
  • Q8. What are best practices in Trigger? And what are trigger events?
  • Ans. 

    Best practices in Trigger and trigger events

    • Best practices include bulkifying triggers, using helper classes, and limiting logic in triggers

    • Trigger events are before insert, before update, after insert, after update, etc.

    • Examples of trigger events include before insert, after update, etc.

  • Answered by AI
  • Q9. What is rollup summary field?
  • Ans. 

    Rollup summary field is a field in Salesforce that calculates values from related records and displays the result on a parent record.

    • Rollup summary fields are used to perform calculations on child records and display the result on a parent record.

    • They can be used to calculate the sum, count, minimum, or maximum of a field in related records.

    • For example, a rollup summary field can be used to calculate the total amount o...

  • Answered by AI
  • Q10. What is with and without sharing?
  • Ans. 

    With and without sharing in Salesforce determines whether sharing rules are enforced for a class.

    • With sharing keyword enforces sharing rules, restricting access to records based on the user's profile and organization-wide defaults.

    • Without sharing keyword does not enforce sharing rules, allowing full access to all records regardless of the user's profile or organization-wide defaults.

  • Answered by AI
  • Q11. Difference between Future and Queable Apex?
  • Ans. 

    Future is asynchronous and runs in a separate thread, while Queueable Apex runs in the same thread but can be queued for execution.

    • Future methods are used for executing code asynchronously, while Queueable Apex is used for chaining jobs and running them in a specific order.

    • Future methods have a limit of 50 per transaction, while Queueable Apex has a limit of 50 jobs in the queue per transaction.

    • Future methods cannot be...

  • Answered by AI
  • Q12. What type of parameters can be passed to Future?
  • Ans. 

    Future methods in Salesforce can accept primitive data types as parameters.

    • Primitive data types like Integer, String, Boolean, etc. can be passed as parameters to Future methods.

    • Non-primitive data types like custom objects or collections cannot be passed as parameters to Future methods.

    • Example: @future public static void myFutureMethod(Integer param1, String param2) { }

  • Answered by AI
  • Q13. How to pass subjects to future methods?
  • Ans. 

    To pass subjects to future methods, use the @future annotation in Apex.

    • Use the @future annotation before the method declaration to indicate that the method will run asynchronously in the future.

    • Pass the subject parameters to the @future method as arguments when calling the method.

    • Ensure that the subject parameters are serializable to be passed to future methods.

  • Answered by AI
  • Q14. What are the tools for deployment?
  • Ans. 

    Tools for deployment include Salesforce DX, Ant Migration Tool, Change Sets, and Metadata API.

    • Salesforce DX is a command-line interface for development and deployment

    • Ant Migration Tool is a Java/Ant-based tool for moving metadata between environments

    • Change Sets allow for moving configuration changes between orgs

    • Metadata API is a web service for managing metadata

  • Answered by AI
  • Q15. Write a trigger on contact to display the number of contact on Account.
  • Ans. 

    Create a trigger on Contact to display the number of contacts on the related Account.

    • Create an after insert, update, delete trigger on Contact object

    • Query for the count of contacts related to the Account

    • Update a custom field on the Account with the count of contacts

  • Answered by AI
  • Q16. Write a trigger on Account. if one or more contact is associated with Account then show error if user tries to delete the account
  • Ans. 

    Create a trigger on Account to prevent deletion if associated with one or more contacts

    • Create an after delete trigger on Account object

    • Query for related contacts using SOQL

    • If contacts are found, add an error message to prevent deletion

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Write lwc code for displaying Accounts with related contacts in a list
  • Ans. 

    Display Accounts with related contacts in a list using LWC code

    • Create a Lightning web component (LWC) to display the list

    • Use Apex to query for Accounts and their related Contacts

    • Iterate over the data to display Accounts and their related Contacts in the list

  • Answered by AI
  • Q2. Write a trigger on Order Products. It should display the most number of sold product type on the account. Eg: if most order products sold out of Tv, Ac and Fridge is Tv then update Tv as the most_sold_prod...
  • Ans. 

    Create a trigger on Order Products to display the most sold product type on the account

    • Create a trigger on Order Products object in Salesforce

    • Use SOQL query to count the number of each product type sold

    • Update the most_sold_product field on the Account object with the highest sold product type

  • Answered by AI
  • Q3. Write syntax for batch class
  • Ans. 

    Batch class syntax in Salesforce

    • Batch class must implement Database.Batchable interface

    • Define start, execute, and finish methods

    • Use Database.executeBatch method to execute the batch class

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - One quesion for sure will be on triggers so please practice Triggers.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Inheritance in apex class?
  • Ans. 

    Inheritance in Apex class allows a class to inherit properties and methods from another class.

    • Inheritance is achieved using the 'extends' keyword in Apex.

    • Child classes can access all non-private members of the parent class.

    • Child classes can override methods from the parent class.

    • Example: Class B extends Class A.

  • Answered by AI
  • Q2. What is Skinny table
  • Ans. 

    Skinny table is a custom table in Salesforce that contains a subset of fields from standard and custom objects for performance optimization.

    • Skinny tables are used to store frequently accessed fields in a denormalized form to improve query performance.

    • They are created by Salesforce automatically based on the fields accessed in reports, list views, and SOQL queries.

    • Skinny tables are read-only and are automatically update...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - HR 

(5 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a Salesforce Developer with 5 years of experience in developing custom solutions for various clients.

    • 5 years of experience in Salesforce development

    • Strong knowledge of Apex, Visualforce, and Lightning components

    • Experience in integrating Salesforce with external systems

    • Certified Salesforce Developer

    • Worked on projects for clients in industries such as healthcare, finance, and retail

  • Answered by AI
  • Q2. Recent company
  • Q3. Payroll company
  • Q4. Skills you aquried there
  • Q5. Which project you were part of
  • Ans. 

    I was part of a project to develop a custom Salesforce CRM solution for a retail company.

    • Developed custom objects, fields, and workflows to meet the specific needs of the retail company

    • Integrated third-party apps for inventory management and customer loyalty programs

    • Created custom reports and dashboards for sales analysis and forecasting

  • Answered by AI
Round 2 - One-on-one 

(7 Questions)

  • Q1. Can you explain flow of your project
  • Ans. 

    The project flow involves gathering requirements, designing solutions, development, testing, deployment, and maintenance.

    • Gather requirements from stakeholders

    • Design solutions based on requirements

    • Develop the solution using Salesforce platform

    • Test the solution for functionality and performance

    • Deploy the solution to production environment

    • Provide ongoing maintenance and support

  • Answered by AI
  • Q2. What was your role
  • Ans. 

    I was responsible for developing and customizing Salesforce applications to meet business requirements.

    • Developed custom Salesforce applications using Apex, Visualforce, and Lightning components

    • Worked closely with stakeholders to gather requirements and design solutions

    • Integrated Salesforce with external systems using REST/SOAP APIs

    • Performed unit testing and debugging to ensure quality code

    • Provided ongoing support and m

  • Answered by AI
  • Q3. What challanges you faced
  • Ans. 

    I faced challenges in integrating third-party systems with Salesforce and optimizing code for performance.

    • Integrating Salesforce with external APIs required thorough understanding of both systems.

    • Optimizing code involved identifying and resolving bottlenecks in Apex code.

    • Dealing with governor limits in Salesforce development was a common challenge.

  • Answered by AI
  • Q4. How you solved that problem
  • Ans. 

    I solved the problem by breaking it down into smaller tasks and collaborating with team members.

    • Analyzed the problem to identify root cause

    • Broke down the problem into smaller tasks

    • Collaborated with team members to brainstorm solutions

    • Implemented the solution and tested for effectiveness

  • Answered by AI
  • Q5. Which methodology you have followed
  • Ans. 

    I have primarily followed Agile methodology in my previous projects.

    • Utilized Scrum framework for sprint planning and daily stand-ups

    • Emphasized collaboration, adaptability, and continuous improvement

    • Prioritized delivering working software in short iterations

  • Answered by AI
  • Q6. How tasks being distributed
  • Ans. 

    Tasks are distributed based on priority, resources, and deadlines.

    • Tasks are assigned to team members based on their skills and availability.

    • Priority tasks are usually assigned first to ensure they are completed on time.

    • Deadlines play a crucial role in task distribution to ensure timely completion.

    • Resource allocation is considered to distribute tasks efficiently.

  • Answered by AI
  • Q7. Basic questions arises from your project explanation
Round 3 - Coding Test 

1. Write some triggers based on some scenarios

Interview Preparation Tips

Topics to prepare for TCS Salesforce Developer interview:
  • Apex
  • Salesforce CRM
  • Cloud
  • Salesforce security model
  • Data Loader
  • User management
  • Sales cloud
  • Service cloud
  • Triggers
  • Asynchronous
  • Batch apex
  • Schedulable class
  • Lwc
  • Integration
  • Integration Testing
Interview preparation tips for other job seekers - Just practice for interviews learn well and start applying it's not a big deal..
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Lookup and masterdetail
  • Q2. Owd and profile level permission
  • Q3. Write a trigger
  • Ans. 

    A trigger is a piece of code that is executed before or after a record is inserted, updated, or deleted in Salesforce.

    • Triggers are written in Apex and are used to perform custom actions on records.

    • Triggers can be executed before or after a record is inserted, updated, or deleted.

    • Triggers can be used to enforce validation rules, update related records, or perform other custom logic.

  • Answered by AI
  • Q4. LWC lifecycle hooks
  • Q5. LWC decorators and uses
  • Ans. 

    LWC decorators are used to add metadata to class fields or methods. '@api' is used to expose a public property or method.

    • LWC decorators are used to enhance the functionality of Lightning web components.

    • '@api' decorator is used to expose a public property or method that can be accessed by parent components.

    • Other decorators like '@track', '@wire', '@api get', '@api set' are also commonly used in LWC development.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Interview questions can not be revealed
Round 2 - One-on-one 

(1 Question)

  • Q1. Interview questions can not be revealed
Round 3 - HR 

(1 Question)

  • Q1. Details like pan aadhar
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. ○rollup summary field and methods in it ○events in lwc ○events in aura ○difference between soql and sosl ○write a query to get the count of active contacts for each account set ○by default what does apex ...
Round 2 - Behavioral 

(1 Question)

  • Q1. General manager round to explain project ntg technical
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Profile, role differencess
  • Q2. How data is sent by callout
  • Ans. 

    Data is sent by callout using HTTP request methods like GET, POST, PUT, DELETE.

    • Data can be sent in the request body or as query parameters

    • Headers can be used to provide additional information

    • Response codes indicate the status of the request

    • Examples: Sending data to an external API, retrieving data from a web service

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(4 Questions)

  • Q1. Agile methodology, Definition of ready and done Sprint planning Functional flow of application Client handling
  • Q2. Project role and responsibility
  • Q3. Scenario based questions
  • Q4. Agile model and waterfall model
Round 3 - HR 

(1 Question)

  • Q1. Brief introduction Current salary Expected Salary
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Case Study 

Based on your work done in the past

Round 3 - HR 

(2 Questions)

  • Q1. Basic details and salary composition
  • Q2. Bonus and variable amount details

Infosys Interview FAQs

How many rounds are there in Infosys Salesforce Consultant Lead interview for experienced candidates?
Infosys interview process for experienced candidates usually has 1 rounds. The most common rounds in the Infosys interview process for experienced candidates are Technical.
How to prepare for Infosys Salesforce Consultant Lead interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Infosys. The most common topics and skills that interviewers at Infosys expect are Salesforce, SFDC, SDLC, Apex and Java.

Tell us how to improve this page.

Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all
Technology Analyst
56.3k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
49.4k salaries
unlock blur

₹2.8 L/yr - ₹9.2 L/yr

System Engineer
38.9k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.7k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.1k salaries
unlock blur

₹6.2 L/yr - ₹17 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Accenture

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview