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 Senior Associate Consultant Interview Questions, Process, and Tips

Updated 25 Feb 2025

Top Infosys Senior Associate Consultant Interview Questions and Answers

  • Q1. Suppose there are two tables: A Customer table and an Order table. The Order table has a column OrderID CustomerID, OrderStatus, and TotalAmount. The Customer table has t ...read more
  • Q2. tell me security vulnerabilities that you have fixed in your project?
  • Q3. what are challenges faced while migrating java 8 to java 17?
View all 187 questions

Infosys Senior Associate Consultant Interview Experiences

176 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Java questions
  • Q2. Basic Springboot questions
Round 2 - Technical 

(2 Questions)

  • Q1. Indepth questions in java8
  • Q2. Fibonacci series program using recursion
  • Ans. 

    A Fibonacci series program using recursion in Python

    • Define a function to calculate Fibonacci series recursively

    • Base case: return 0 if n is 0, return 1 if n is 1

    • Recursive case: return fibonacci(n-1) + fibonacci(n-2)

    • Example: def fibonacci(n): return n if n <= 1 else fibonacci(n-1) + fibonacci(n-2)

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is .net core
  • Ans. 

    ASP.NET Core is a cross-platform, high-performance framework for building modern, cloud-based, internet-connected applications.

    • ASP.NET Core is an open-source, cross-platform framework for building web applications.

    • It is a high-performance framework that allows developers to build modern, cloud-based applications.

    • ASP.NET Core supports multiple platforms including Windows, macOS, and Linux.

    • It is designed to be modular, a...

  • Answered by AI

Senior Associate Consultant Interview Questions Asked at Other Companies

asked in WNS
Q1. What is journal entries? What is cash allotment? What is differan ... read more
asked in Infosys
Q2. Suppose there are two tables: A Customer table and an Order table ... read more
asked in Infosys
Q3. tell me security vulnerabilities that you have fixed in your proj ... read more
asked in Infosys
Q4. what are challenges faced while migrating java 8 to java 17?
Q5. What are the errors you got while replicating the data from c4c t ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic questions on testing and flow

Round 2 - Technical 

(2 Questions)

  • Q1. Basic questions on testing flow
  • Q2. Na
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java String Based Questions
  • Q2. Garbage Collections

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare about Basics of the Technology and thoroughly about project

Infosys interview questions for designations

 Associate Consultant

 (270)

 Associate Technical Consultant

 (3)

 Associate SAP Consultant

 (2)

 Associate Functional Consultant

 (1)

 Associate Consultant Engineering

 (1)

 Senior Consultant

 (101)

 Senior Associate IT Consultant

 (1)

 Associate SAP MM Consultant

 (3)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. All basic questions were asked from Data management.
  • Q2. Few questions were asked from my current work process.

Get interview-ready with Top Infosys Interview Questions

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

(2 Questions)

  • Q1. Question on C# and .net
  • Q2. Question on Angular

Senior Associate Consultant Jobs at Infosys

View all
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is Trigger?
  • Ans. 

    A trigger is a special kind of stored procedure that is automatically executed when certain events occur in a database.

    • Triggers can be used to enforce business rules, maintain referential integrity, and automate repetitive tasks.

    • Examples of trigger events include INSERT, UPDATE, and DELETE operations on a table.

    • Triggers can be defined to execute before or after the triggering event.

    • They are commonly used in database ma...

  • Answered by AI
  • Q2. What is Flows and type?
  • Ans. 

    Flows are sequences of steps that represent a process or workflow. There are different types of flows based on their purpose and structure.

    • Flows are used to represent the sequence of steps in a process or workflow.

    • Types of flows include linear flows, branching flows, and looping flows.

    • Linear flows follow a single path from start to finish.

    • Branching flows have multiple paths based on conditions or decisions.

    • Looping flow...

  • Answered by AI
  • Q3. What is Batch class and example
  • Ans. 

    Batch class is a Salesforce feature used to process large amounts of data in chunks.

    • Batch class implements the Database.Batchable interface in Salesforce

    • It allows you to break down a large data set into smaller batches for processing

    • Batch class is useful for handling large data volumes without hitting governor limits

    • Example: A batch class can be used to update all account records with a specific field value

  • Answered by AI
  • Q4. Write a trigger on account
  • Ans. 

    A trigger on account to perform actions on record insert, update, or delete

    • Triggers are used to perform actions before or after records are inserted, updated, or deleted

    • Triggers can be written in Apex language

    • Example: Trigger to update a related object when an account is inserted

  • Answered by AI
  • Q5. What is future and queable
  • Ans. 

    Future and queable are terms related to asynchronous programming and task scheduling.

    • Future refers to a result that is not immediately available but will be at some point in the future.

    • Queable refers to tasks that can be added to a queue and executed in a specific order or based on certain conditions.

    • Examples: Future in Java's CompletableFuture, Queable tasks in Python's Celery.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
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. Roles & Responsibilities
  • Q2. How to call apex class from flow
  • Ans. 

    You can call an Apex class from a flow by using the 'InvocableMethod' annotation in the Apex class.

    • Create an Apex class with a method annotated with @InvocableMethod.

    • Add input and output parameters to the method.

    • Use the 'Flow' element in the flow builder to call the Apex class and pass input parameters.

    • Handle the output from the Apex class in the flow.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Project i'm working on
  • Q2. Strengths and weakness
Round 3 - HR 

(1 Question)

  • Q1. Why should they hire me

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Describe the Ec2 configuration process?
  • Ans. 

    EC2 configuration process involves selecting instance type, configuring security groups, setting up storage, and launching the instance.

    • Select the appropriate EC2 instance type based on your requirements (e.g. t2.micro, m5.large)

    • Configure security groups to control inbound and outbound traffic to the instance (e.g. allow SSH access on port 22)

    • Set up storage options such as EBS volumes or instance store volumes for data...

  • Answered by AI
  • Q2. How does s3 lifecycle management works?
  • Ans. 

    S3 lifecycle management automates the process of moving objects between different storage classes in S3 based on predefined rules.

    • Lifecycle policies can transition objects to different storage classes like S3 Standard, S3 Intelligent-Tiering, S3 Standard-IA, and S3 One Zone-IA.

    • Objects can also be archived to Glacier or Glacier Deep Archive for cost optimization.

    • Rules can be based on object age, size, or custom metadata...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for the interviews

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Core java & Spring boot questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Project related questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Infosys Interview FAQs

How many rounds are there in Infosys Senior Associate Consultant interview?
Infosys interview process usually has 2-3 rounds. The most common rounds in the Infosys interview process are Technical, HR and Resume Shortlist.
How to prepare for Infosys Senior Associate 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, Project Management, Team Management and CRM.
What are the top questions asked in Infosys Senior Associate Consultant interview?

Some of the top questions asked at the Infosys Senior Associate Consultant interview -

  1. Suppose there are two tables: A Customer table and an Order table. The Order t...read more
  2. tell me security vulnerabilities that you have fixed in your proje...read more
  3. what are challenges faced while migrating java 8 to java ...read more
How long is the Infosys Senior Associate Consultant interview process?

The duration of Infosys Senior Associate Consultant interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Infosys Senior Associate Consultant Interview Process

based on 152 interviews

5 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • HR Round - 1
  • HR Round - 2
  • Personal Interview1 Round
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Senior Associate Consultant Salary
based on 27.8k salaries
₹4.5 L/yr - ₹17 L/yr
5% less than the average Senior Associate Consultant Salary in India
View more details

Infosys Senior Associate Consultant Reviews and Ratings

based on 1.6k reviews

3.5/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

2.7

Salary

4.2

Job security

3.6

Company culture

2.5

Promotions

3.3

Work satisfaction

Explore 1.6k Reviews and Ratings
Senior Associate Consultant (Mainframe technologies)

Bangalore / Bengaluru

3-8 Yrs

₹ 9.05-15 LPA

S2RL Senior Associate Consultant

Ahmedabad

5-8 Yrs

Not Disclosed

S2RL Senior Associate Consultant

Ahmedabad

5-8 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
55.8k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.6k salaries
unlock blur

₹2.8 L/yr - ₹9 L/yr

System Engineer
39.5k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.8k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.8k salaries
unlock blur

₹4.5 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.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview