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

Clear (1)

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

 (34)

 Salesforce Administrator

 (2)

 Associate Salesforce Consultant

 (1)

 Salesforce Consultant Lead

 (1)

 Senior Salesforce Developer

 (3)

 Salesforce Administrator and Developer

 (3)

 Salesforce Marketing Cloud Consultant

 (1)

 Associate Consultant

 (270)

Interview questions from similar companies

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 140 minutes
Round difficulty - Medium

Test timing was at 2:00 pm , it was conducted in a college and the environment was good for the test. Camera was a primary part of test, so no suspicious activity.

  • Q1. 

    Sum of Two Numbers Represented as Arrays

    Given two numbers in the form of two arrays where each element of the array represents a digit, calculate the sum of these two numbers and return this sum as an ar...

  • Ans. 

    Given two numbers represented as arrays, calculate their sum and return the result as an array.

    • Iterate through the arrays from right to left, adding digits and carrying over if necessary

    • Handle cases where one array is longer than the other by considering the remaining digits

    • Ensure the final sum array does not have any leading zeros

  • Answered by AI
Round 2 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

The round was conducted at around 12 p.m. I was called at the college location and then it was conducted. The interviewer was quite polite and frank.

Round 3 - HR 

Round duration - 8 minutes
Round difficulty - Easy

This round was conducted right after finishing and clearing the technical round at the same place and on the same day.

Interview Preparation Tips

Eligibility criteriaAbove 60 %Wipro Limited interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Database Concepts, Coding problemsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 2-3 Coding problems daily so your logic building becomes stronger.
Tip 2 : Exercise problems based on OOPS concepts and others too.
Tip 3 : If you can have your own project built, then it's the major point and will act as a plus point.

Application resume tips for other job seekers

Tip 1 : Your resume should be in standard form, short and simple will be more effective.
Tip 2 : Whatever you have learned, you need to mention it in your resume as that will be your primary source of selection and having project on your resume is important.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Job Portal and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Solid principles in c#
  • Ans. 

    Solid principles are a set of design principles for writing maintainable and scalable code in C#.

    • Single Responsibility Principle (SRP) - a class should have only one reason to change

    • Open/Closed Principle (OCP) - a class should be open for extension but closed for modification

    • Liskov Substitution Principle (LSP) - derived classes should be substitutable for their base classes

    • Interface Segregation Principle (ISP) - client...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good company for freshers as well as beginners

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Spring container and beans
  • Q2. Annotations used in Springboot
  • Ans. 

    Annotations are used in Springboot to simplify configuration and reduce boilerplate code.

    • Annotations are used to define the behavior of Spring components

    • They can be used to define the scope of a bean, inject dependencies, and handle exceptions

    • Some commonly used annotations include @Component, @Autowired, and @ExceptionHandler

  • Answered by AI
  • Q3. Java 8 New Features and explanation
  • Ans. 

    Java 8 introduced several new features including lambda expressions, streams, and default methods.

    • Lambda expressions allow for functional programming and simplify code.

    • Streams provide a way to process collections of data in a functional style.

    • Default methods allow for adding new methods to interfaces without breaking existing implementations.

    • Other features include the Optional class, Date and Time API, and Nashorn Java

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What is your expected package

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the topics thoroughly with working examples. Theoretical knowledge is not enough to really grasp the concepts.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about Yourself, some questions related to machine learning, and I was asked more questions to differentiate like differences between ml and ai, python and c, c and java and procedural and functiona...

Interview Preparation Tips

Interview preparation tips for other job seekers - Get a complete grip on your resume and be confident about what you say, If you don't know the answer it is okay to agree that you don't know the answer so that interviewer can ask the next questions.

I was interviewed before Jun 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 minutes
Round difficulty - Easy

It was an mcq + coding round. There were aptitude and ouput based question in mcq. And coding questions were easy

  • Q1. 

    Find the Duplicate Number Problem Statement

    Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...

  • Ans. 

    Find the duplicate number in an array of integers from 0 to (N-2).

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Return the number with a frequency greater than 1 as the duplicate number.

    • Time complexity can be optimized to O(N) using Floyd's Tortoise and Hare algorithm.

  • Answered by AI
  • Q2. 

    Reverse String Operations Problem Statement

    You are provided with a string S and an array of integers A of size M. Your task is to perform M operations on the string as specified by the indices in array A...

  • Ans. 

    Given a string and an array of indices, reverse substrings based on the indices to obtain the final string.

    • Iterate through the array of indices and reverse the substrings accordingly

    • Ensure the range specified by each index is non-empty

    • Return the final string after all operations are completed

  • Answered by AI
Round 2 - Video Call 

Round duration - 60 Minutes
Round difficulty - Easy

It was technical + hr round. there were 2 people as interviewer. They stated from intro and asked some basic puzzles and hr questions. After that they asked about my projects, technologies and some ds algo and dbms questions.

Interview Preparation Tips

Eligibility criterianaAccenture interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude
Tip 2 : Focus on practicing coding
Tip 3 : Learn from mistakes

Application resume tips for other job seekers

Tip 1 : Mention some projects that you have done
Tip 2 : Try to have skills that are required for the role

Final outcome of the interviewSelected

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

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

Recently Viewed

INTERVIEWS

Deloitte

No Interviews

INTERVIEWS

Wipro

No Interviews

DESIGNATION

LIST OF COMPANIES

Discover companies

Find best workplace

DESIGNATION

INTERVIEWS

Oxfam

No Interviews

INTERVIEWS

IBM

No Interviews

INTERVIEWS

CARE

No Interviews

INTERVIEWS

Sofitel Luxury Hotel

No Interviews

DESIGNATION

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.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all
Infosys Salesforce Consultant Salary
based on 91 salaries
₹6.1 L/yr - ₹19.5 L/yr
12% 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

₹0 L/yr - ₹0 L/yr

Senior Systems Engineer
50.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Engineer
39.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
30.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate Consultant
27.9k salaries
unlock blur

₹0 L/yr - ₹0 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent