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

Filter interviews by

Infosys Salesforce Consultant Interview Questions, Process, and Tips

Updated 10 Oct 2024

Top Infosys Salesforce Consultant Interview Questions and Answers

Infosys Salesforce Consultant Interview Experiences

4 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Trigger on child object to update parent object (Account from Contact)
  • Ans. 

    Use trigger on Contact to update related Account fields

    • Create a trigger on Contact object

    • Query for related Account record using Contact's AccountId

    • Update Account fields based on Contact field changes

  • Answered by AI
  • Q2. Batch Apex Syntax, Features and Limitations
  • Ans. 

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

    • Batch Apex is used to handle large data volumes by breaking the processing into smaller chunks.

    • It is implemented by writing a class that implements the Database.Batchable interface.

    • Batch Apex has start, execute, and finish methods to control the batch processing.

    • It has limitations such as a maximum of 50 million records processed per batch...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Trigger to send Email to Contacts on update on Account
  • Ans. 

    Use a trigger to send email to contacts when an account is updated

    • Create a trigger on Account object

    • Query for related contacts

    • Send email to contacts using Apex email class

  • Answered by AI
  • Q2. Communication in LWC
  • Ans. 

    Communication in LWC involves using events, properties, and methods to pass data between components.

    • Use events to communicate between parent and child components

    • Pass data using properties in the component hierarchy

    • Call methods in child components from parent components

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Reason for Job Change
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic environment.

    • Desire to work with cutting-edge technology

    • Opportunity for career advancement

    • Seeking a more collaborative team environment

  • Answered by AI
  • Q2. Salary Expectations

Interview Preparation Tips

Topics to prepare for Infosys Salesforce Consultant interview:
  • Batch Apex
  • LWC
  • Apex Triggers

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How to bulkify flows
  • Ans. 

    Bulkifying flows involves optimizing flows to handle large volumes of data efficiently.

    • Use collections (such as lists or maps) to process records in bulk

    • Avoid using record-triggered flows on large data sets

    • Minimize the number of queries and DML operations within the flow

  • Answered by AI

Salesforce Consultant Interview Questions Asked at Other Companies

asked in Deloitte
Q1. 1. can we extract related object from parent object and vice vers ... read more
asked in Infosys
Q2. Trigger on child object to update parent object (Account from Con ... read more
asked in Deloitte
Q3. how to convert one to one relation to many to many relationship
asked in Infosys
Q4. Trigger to send Email to Contacts on update on Account
Q5. What is the knowledge required for a Salesforce Consultant and Re ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. It was very Extensive. It was a really good learning experience for me.
  • Q2. For the technical round the interviewers try to test your knowledge in all aspects of salesforce so one has to be prepated accordingly

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through Salesforce Security
Apex
Lwc
flows
Aura
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. Trigger Code for updating account record with one field to another before insert
  • Ans. 

    Use a trigger to update one field to another on account record before insert

    • Create a before insert trigger on Account object

    • Write code to update the field value before the record is inserted

    • Use trigger.new to access the records being inserted

  • Answered by AI

Skills evaluated in this interview

Infosys interview questions for designations

 Salesforce Developer

 (35)

 Salesforce Administrator

 (2)

 Salesforce Consultant Lead

 (1)

 Associate Salesforce Consultant

 (1)

 Senior Salesforce Developer

 (3)

 Salesforce Administrator and Developer

 (3)

 Salesforce Marketing Cloud Consultant

 (1)

 Associate Consultant

 (273)

Interview questions from similar companies

I applied via Referral and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What did you asked?

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview wanted to test about person knowledge and communication skills. Most of the questions asked to they subject in interview. Person details.
Thanks you

I applied via Company Website and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Question related technologies you have worked on and there versions..how your production cycle worked in last company and some oops related questions
  • Q2. Be confident they don't take more than 2-3 rounds.your basic must be perfect

Interview Preparation Tips

Interview preparation tips for other job seekers - They don't take more than 2-3 rounds.be confident and basics must be perfect

I applied via Naukri.com and was interviewed in Sep 2021. There were 2 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 

(1 Question)

  • Q1. All types of test steeps
  • Ans. 

    Types of test steps in software testing

    • Unit testing - testing individual units or components of the software

    • Integration testing - testing how different units or components work together

    • System testing - testing the entire system as a whole

    • Acceptance testing - testing if the software meets the requirements and is ready for release

    • Regression testing - testing to ensure that changes or updates to the software did not intro...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hope for the best.All can achieve same

Interview Questionnaire 

1 Question

  • Q1. Questions related to COBOL,JCL,VSAM,DB2,CICS,Vision plus

Interview Questionnaire 

1 Question

  • Q1. Occurs, precompile , file status codes , sql queries and scenarios on sql.

Interview Questionnaire 

7 Questions

  • Q1. Solid principles
  • Q2. Extension methods
  • Q3. Static class and static constructor
  • Ans. 

    Static class and static constructor in C#

    • Static class can only contain static members and cannot be instantiated

    • Static constructor is called only once when the class is first accessed

    • Static constructor is used to initialize static members of the class

    • Example: Math class in C# is a static class

    • Example: static constructor can be used to initialize a static variable with a value

  • Answered by AI
  • Q4. Polymorphism
  • Q5. Dependency injection
  • Q6. Angular life cycle hook
  • Q7. Performance improvement in Angular app
  • Ans. 

    Performance improvement in Angular app

    • Use lazy loading to load modules on demand

    • Optimize change detection strategy

    • Use trackBy function in ngFor loops

    • Minimize DOM manipulation

    • Use AOT compilation

    • Implement server-side rendering

    • Use web workers for heavy computations

    • Use caching for frequently accessed data

  • Answered by AI

Skills evaluated in this interview

Infosys Interview FAQs

How many rounds are there in Infosys Salesforce Consultant interview?
Infosys interview process usually has 1-2 rounds. The most common rounds in the Infosys interview process are Technical and HR.
How to prepare for Infosys Salesforce Consultant interview?
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, Software Configuration Management, Salesforce Lightning and Team Management.
What are the top questions asked in Infosys Salesforce Consultant interview?

Some of the top questions asked at the Infosys Salesforce Consultant interview -

  1. Trigger on child object to update parent object (Account from Conta...read more
  2. Trigger to send Email to Contacts on update on Acco...read more
  3. Batch Apex Syntax, Features and Limitati...read more

Tell us how to improve this page.

Infosys Salesforce Consultant Interview Process

based on 4 interviews

1 Interview rounds

  • Technical Round
View more
Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Infosys Salesforce Consultant Salary
based on 94 salaries
₹7.1 L/yr - ₹19.5 L/yr
11% more than the average Salesforce Consultant Salary in India
View more details

Infosys Salesforce Consultant Reviews and Ratings

based on 7 reviews

2.3/5

Rating in categories

2.2

Skill development

3.1

Work-life balance

2.1

Salary

2.5

Job security

2.3

Company culture

1.7

Promotions

1.9

Work satisfaction

Explore 7 Reviews and Ratings
Technology Analyst
55.4k salaries
unlock blur

₹3 L/yr - ₹11.1 L/yr

Senior Systems Engineer
51.2k salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

System Engineer
31.7k salaries
unlock blur

₹2.5 L/yr - ₹5.6 L/yr

Technical Lead
31k salaries
unlock blur

₹5.1 L/yr - ₹20 L/yr

Senior Associate Consultant
28.8k salaries
unlock blur

₹6.2 L/yr - ₹16.9 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview