AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
logo
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 Work with us arrow

Compare button icon Compare button icon Compare
3.6

based on 42.8k Reviews

  • Why join us
  • Reviews
    42.8k
  • Salaries
    4.9L
  • Interviews
    7.9k
  • Jobs
    1.1k
  • Benefits
    5.4k
  • Photos
    117
  • Posts
    67

Filter interviews by

Infosys Associate Consultant Interview Questions and Answers

Updated 23 Jun 2025

191 Interview questions

An Associate Consultant was asked 1mo ago
Q. What are the different types of joins in SQL?
Ans. 

SQL joins combine rows from two or more tables based on related columns, enabling complex queries and data retrieval.

  • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.id;

  • LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.id;

  • RIGHT JOIN: Returns all records from ...

An Associate Consultant was asked 1mo ago
Q. What are two ways to call a microservice from another microservice?
Ans. 

Microservices can communicate via REST APIs or messaging queues, enabling efficient and scalable interactions between services.

  • REST API: Microservices can expose RESTful endpoints, allowing other services to make HTTP requests to interact with them. Example: Service A calls Service B's endpoint using GET/POST methods.

  • Messaging Queues: Services can communicate asynchronously using message brokers like RabbitMQ or K...

Associate Consultant Interview Questions Asked at Other Companies

asked in IQVIA
Q1. There are 2 cricket teams, A and B, with 11 players each. If ever ... read more
View answers (16)
asked in KPMG India
Q2. While working late at night, you realize that the data you've bee ... read more
View answers (2)
asked in Capgemini
Q3. Which tools have you used in test management and defect tracking?
View answers (9)
asked in o9 Solutions
Q4. Reverse the String Problem Statement You are given a string STR w ... read more
View answers (2)
asked in Mastek
Q5. If we include all Header Files in a Java Code, will it increase t ... read more
View answer (1)
View All
An Associate Consultant was asked 1mo ago
Q. Explain window functions in PySpark.
Ans. 

Window functions in PySpark allow for advanced data analysis by performing calculations across a set of rows related to the current row.

  • Definition: Window functions perform calculations across a specified range of rows, providing insights without collapsing the result set.

  • Syntax: The basic syntax includes 'windowSpec' to define the partitioning and ordering of data, followed by the function, e.g., 'avg', 'sum'.

  • Exa...

🔥 Asked by recruiter 4 times
An Associate Consultant was asked 2mo ago
Q. Tell me about Infosys.
Ans. 

Infosys is a global leader in technology services and consulting, providing innovative solutions to clients worldwide.

  • Founded in 1981, Infosys is headquartered in Bangalore, India.

  • It offers services in IT consulting, application development, and maintenance.

  • Infosys has a strong focus on digital transformation, including AI and cloud services.

  • The company operates in over 50 countries, serving clients across various...

An Associate Consultant was asked 3mo ago
Q. How do you test static methods in Java?
Ans. 

Static method testing in Java involves verifying the behavior of methods that belong to a class rather than instances of the class.

  • Use JUnit framework for testing static methods.

  • Example: @Test public void testStaticMethod() { assertEquals(expected, ClassName.staticMethod(args)); }

  • Mock static methods using PowerMockito for dependencies.

  • Example: PowerMockito.mockStatic(ClassName.class);

  • Ensure to test edge cases and ...

An Associate Consultant was asked 4mo ago
Q. How would you create a REST endpoint?
Ans. 

Creating a REST endpoint for a web application

  • Define the endpoint URL and HTTP method (e.g. GET, POST)

  • Implement the logic to handle requests and responses

  • Use frameworks like Spring Boot for Java or Express for Node.js

  • Secure the endpoint with authentication and authorization

  • Document the endpoint with Swagger or OpenAPI

An Associate Consultant was asked 4mo ago
Q. How have you managed disagreements with colleagues and superiors?
Ans. 

I address contradictions by actively listening, seeking common ground, and proposing solutions collaboratively.

  • Listen actively to understand the perspectives of colleagues and superiors

  • Seek common ground by focusing on shared goals and interests

  • Propose solutions collaboratively by involving all parties in the decision-making process

Are these interview questions helpful?
An Associate Consultant was asked 4mo ago
Q. Write a simple program to demonstrate streams and lambda functions.
Ans. 

Demonstrating Java Streams and Lambda functions with a simple example of filtering and mapping a list of integers.

  • Streams allow processing sequences of elements (e.g., collections) in a functional style.

  • Lambda functions provide a concise way to represent a single method interface.

  • Example: Filtering even numbers from a list: List<Integer> evens = numbers.stream().filter(n -> n % 2 == 0).collect(Collectors....

An Associate Consultant was asked 5mo ago
Q. How would you count the unique values in a specific column while excluding null values?
Ans. 

Count unique values of a column, excluding null values.

  • Use SQL query with COUNT(DISTINCT column_name) to count unique values.

  • Filter out null values using WHERE clause.

  • Example: SELECT COUNT(DISTINCT column_name) FROM table_name WHERE column_name IS NOT NULL;

An Associate Consultant was asked 5mo ago
Q. How would you read a CSV file using the pandas library?
Ans. 

Use pandas library to read a CSV file in Python.

  • Import the pandas library: import pandas as pd

  • Use the read_csv() function to read the CSV file into a DataFrame: df = pd.read_csv('file.csv')

  • Specify additional parameters like delimiter, header, etc. if needed

1 2 3 4 5 6 7

Infosys Associate Consultant Interview Experiences

286 interviews found

Associate Consultant Interview Questions & Answers

user image Suvi

posted on 23 Jun 2025

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

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. 1 end to end implementation in SAP PO
  • Ans. 

    An end-to-end implementation in SAP PO involves integration, configuration, and deployment of processes across systems.

    • Define project scope and objectives, including business requirements.

    • Design integration scenarios using SAP PO tools like Integration Designer.

    • Configure adapters (e.g., IDoc, SOAP, REST) for communication between systems.

    • Develop and test mappings to transform data formats as needed.

    • Deploy the integrati...

  • Answered by AI
    Add your answer
  • Q2. Different adapters
  • Ans. 

    Adapters are devices that enable compatibility between different systems or components, facilitating communication and functionality.

    • Adapters can be hardware (like USB to HDMI) or software (like API adapters).

    • A USB-C to USB-A adapter allows newer devices to connect with older USB ports.

    • In software, an API adapter translates requests between different systems, like a payment gateway integration.

    • Network adapters enable d...

  • Answered by AI
    Add your answer
  • Q3. CTS transport mechanism
  • Ans. 

    CTS transport mechanism refers to the process of cargo transport within cells, crucial for cellular function and communication.

    • CTS stands for Cargo Transport System, essential for moving proteins and organelles.

    • Utilizes vesicles to transport materials between organelles, e.g., ER to Golgi.

    • Involves motor proteins like kinesin and dynein for movement along microtubules.

    • Example: Neurotransmitter release at synapses involv...

  • Answered by AI
    Add your answer
  • Q4. Different tcodes and about AL11 directory
  • Ans. 

    AL11 is an SAP transaction code used to access the file directory on the application server.

    • AL11 allows users to view and manage files on the application server.

    • It displays the directory structure and file contents.

    • Commonly used for troubleshooting and monitoring file transfers.

    • Example: You can check log files or data files stored in specific directories.

  • Answered by AI
    Add your answer
  • Q5. 1 development scenario
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was moderate. Just let them know what you have worked upon earlier with confidence
Anonymous

Associate Consultant Interview Questions & Answers

user image Anonymous

posted on 7 Jan 2025

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

I applied via Naukri.com and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are different aws s3 bucket types
  • Ans. 

    Different types of AWS S3 buckets include Standard, Intelligent-Tiering, Glacier, and OneZone-IA.

    • Standard: Default storage class for general-purpose data

    • Intelligent-Tiering: Automatically moves data between two access tiers based on usage patterns

    • Glacier: Low-cost storage for data archiving and long-term backup

    • OneZone-IA: Lower-cost option for infrequently accessed data stored in a single Availability Zone

  • Answered by AI
    Add your answer
  • Q2. What is the maximum number of subnets that can be created in a Virtual Private Cloud (VPC)?
  • Ans. 

    The maximum number of subnets that can be created in a VPC depends on the CIDR block size chosen for the VPC.

    • The maximum number of subnets in a VPC is determined by the number of available IP addresses in the CIDR block.

    • Each subnet in a VPC must be associated with a unique CIDR block within the VPC's CIDR range.

    • For example, if a VPC is created with a CIDR block of 10.0.0.0/16, it can have up to 65,536 subnets (2^16).

  • Answered by AI
    Add your answer
Round 2 - HR 

(2 Questions)

  • Q1. What are your roles
  • Ans. 

    My roles include analyzing data, creating reports, presenting findings, and providing recommendations to clients.

    • Analyze data to identify trends and insights

    • Create reports summarizing key findings

    • Present findings to clients in a clear and concise manner

    • Provide recommendations based on data analysis

  • Answered by AI
    Add your answer
  • Q2. How yoi handle team
  • Ans. 

    I handle team by fostering open communication, setting clear goals, providing support, and recognizing achievements.

    • Foster open communication within the team to ensure everyone is on the same page

    • Set clear goals and expectations to guide team members towards success

    • Provide support and resources to help team members overcome challenges

    • Recognize and celebrate achievements to boost morale and motivation

  • Answered by AI
    Add your answer
Anonymous

Associate Consultant Interview Questions & Answers

user image Bodke Venkatesh

posted on 28 Oct 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. About my self and Azure experience
  • Add your answer
  • Q2. Technical questions on Azure Integration Services
  • Add your answer
Round 2 - Behavioral 

(2 Questions)

  • Q1. Not much technical but test your real time experience
  • Add your answer
  • Q2. About previous projects and roles
  • Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiation
  • Add your answer
  • Q2. Location and salary discussion
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Very nice experience with Infosys as a immediate joinee the process to only 12 days from first round to offer release.
Anonymous

Associate Consultant Interview Questions & Answers

user image Aakash Choudhary

posted on 7 Oct 2024

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Fail fast and Non fail Fast
  • Add your answer
  • Q2. Difference between PUT and PATCH
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. LLD of simple web application
  • Add your answer
  • Q2. Multithreading related questions
  • Add your answer

Skills evaluated in this interview

Anonymous

Associate Consultant Interview Questions & Answers

user image Anonymous

posted on 8 Oct 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. .NET basic Questions
  • Add your answer
  • Q2. Angular basic questions
  • Add your answer
Round 2 - Behavioral 

(2 Questions)

  • Q1. Scenario based questions
  • Add your answer
  • Q2. Current Project based questions
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion
  • Add your answer
Anonymous

Associate Consultant Interview Questions & Answers

user image Anonymous

posted on 25 Nov 2024

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

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

Round 1 - Technical 

(8 Questions)

  • Q1. Explain multithreading and stages of multithreading
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, improving performance and responsiveness.

    • Multithreading allows multiple threads to run concurrently within the same process.

    • Stages of multithreading include thread creation, thread scheduling, and thread execution.

    • Example: A web server handling multiple client requests simultaneously using multithreading.

  • Answered by AI
    Add your answer
  • Q2. If there are 5 tasks, how to write a code so that the 5 tasks are run simultaneously
  • Ans. 

    To run 5 tasks simultaneously, use multithreading or multiprocessing in the code.

    • Use multithreading or multiprocessing to create separate threads/processes for each task.

    • Ensure proper synchronization and communication between the threads/processes if needed.

    • Consider using a thread pool or multiprocessing pool for better resource management.

    • Example: In Python, you can use the 'threading' or 'multiprocessing' module to a...

  • Answered by AI
    Add your answer
  • Q3. Questions about REST API(difference between @RequestParam and @PathVariable). Tell some annotations which were used in my project
  • Add your answer
  • Q4. Exception Handling in spring boot
  • Add your answer
  • Q5. Deployment process in my project
  • Ans. 

    Our deployment process involves continuous integration and automated testing before releasing to production.

    • We use Jenkins for continuous integration to automatically build and test code changes.

    • Before deployment, code changes are reviewed by team members to ensure quality.

    • We have different environments for testing such as development, staging, and production.

    • Deployment to production is done using automated scripts to ...

  • Answered by AI
    Add your answer
  • Q6. Object class in java(name some methods and follow up questions on that. Difference between == and equals())
  • Add your answer
  • Q7. DDL and DML commands in SQL
  • Ans. 

    DDL commands are used to define or modify the structure of database objects, while DML commands are used to manage data within those objects.

    • DDL commands include CREATE, ALTER, DROP, TRUNCATE, etc.

    • DML commands include INSERT, UPDATE, DELETE, SELECT, etc.

    • DDL commands are used to create or modify tables, indexes, views, etc.

    • DML commands are used to insert, update, delete, or retrieve data from tables.

  • Answered by AI
    Add your answer
  • Q8. Microservices question(communication between microservices)
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through your project very nicely. Also please cover basics of java, spring boot , microservices in detail.
Anonymous

Associate Consultant Interview Questions & Answers

user image Soumen Mitra

posted on 20 Feb 2025

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

I appeared for an interview in Aug 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Java 8 features.
  • Ans. 

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

    • Lambda expressions allow you to pass functionality as an argument to a method.

    • Functional interfaces have a single abstract method and can be used with lambda expressions.

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

    • Default methods allow interfaces to have method imple...

  • Answered by AI
    Add your answer
  • Q2. Some simple program to demonstrate streams and lambda functions
  • Ans. 

    Demonstrating Java Streams and Lambda functions with a simple example of filtering and mapping a list of integers.

    • Streams allow processing sequences of elements (e.g., collections) in a functional style.

    • Lambda functions provide a concise way to represent a single method interface.

    • Example: Filtering even numbers from a list: List<Integer> evens = numbers.stream().filter(n -> n % 2 == 0).collect(Collectors.toLis...

  • Answered by AI
    Add your answer
  • Q3. My project experience and contributions
  • Ans. 

    I have experience working on various projects and have made significant contributions to each.

    • Led a team in implementing a new software system for a client, resulting in a 20% increase in efficiency

    • Developed a marketing strategy that led to a 30% increase in sales for a product

    • Collaborated with cross-functional teams to successfully launch a new product in the market

  • Answered by AI
    Add your answer
  • Q4. Spring boot annotations
  • Add your answer
  • Q5. Create a rest endpoint
  • Ans. 

    Creating a REST endpoint for a web application

    • Define the endpoint URL and HTTP method (e.g. GET, POST)

    • Implement the logic to handle requests and responses

    • Use frameworks like Spring Boot for Java or Express for Node.js

    • Secure the endpoint with authentication and authorization

    • Document the endpoint with Swagger or OpenAPI

  • Answered by AI
    Add your answer
Round 2 - Technical 

(3 Questions)

  • Q1. My overall project experience
  • Ans. 

    I have experience working on various projects in different industries.

    • Managed a team to implement a new software system for a retail company

    • Led a market research project for a healthcare organization

    • Developed a marketing strategy for a tech startup

    • Collaborated with cross-functional teams on a product launch for a consumer goods company

  • Answered by AI
    Add your answer
  • Q2. My contributions
  • Add your answer
  • Q3. How I managed contradiction with collegues and superiors
  • Ans. 

    I address contradictions by actively listening, seeking common ground, and proposing solutions collaboratively.

    • Listen actively to understand the perspectives of colleagues and superiors

    • Seek common ground by focusing on shared goals and interests

    • Propose solutions collaboratively by involving all parties in the decision-making process

  • Answered by AI
    Add your answer
Anonymous

Associate Consultant Interview Questions & Answers

user image Anonymous

posted on 20 Jan 2025

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

I applied via Company Website and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Coding round. General coding questions like count the number of capital and small letters in a sentence. Pandas basic coding questions were there.
  • Add your answer
  • Q2. How will you read a CSV file using pandas library?
  • Add your answer
  • Q3. Count the unique values of a particular column. Remove the null values, etc ,
  • Ans. 

    Count unique values of a column, excluding null values.

    • Use SQL query with COUNT(DISTINCT column_name) to count unique values.

    • Filter out null values using WHERE clause.

    • Example: SELECT COUNT(DISTINCT column_name) FROM table_name WHERE column_name IS NOT NULL;

  • Answered by AI
    Add your answer
Round 2 - One-on-one 

(1 Question)

  • Q1. Managerial round. Asked questions about sprint, Agile workflow processes. Git related questions like what is the difference between git rebase and git merge? SQL questions, etc.,
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Negotiated the salary and discussed about the offer.
  • Add your answer
Anonymous

Associate Consultant Interview Questions & Answers

user image Vishal Shinde

posted on 3 Jan 2025

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

(2 Questions)

  • Q1. What is react? Explain react life cycle
  • Ans. 

    React is a JavaScript library for building user interfaces.

    • React is used for creating interactive UI components.

    • It uses a virtual DOM for efficient rendering.

    • React components have a lifecycle which includes mounting, updating, and unmounting.

    • Some of the lifecycle methods include componentDidMount, componentDidUpdate, and componentWillUnmount.

  • Answered by AI
    Add your answer
  • Q2. What is hooks explain different hooks
  • Ans. 

    Hooks in programming are functions that allow developers to execute code at specific points in the application's lifecycle.

    • Hooks are used in React to add functionality to functional components.

    • useState is a hook used to add state to functional components.

    • useEffect is a hook used to perform side effects in functional components.

    • Custom hooks can be created to reuse logic across multiple components.

  • Answered by AI
    Add your answer
Anonymous

Associate Consultant Interview Questions & Answers

user image Anonymous

posted on 28 Jan 2025

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

I appeared for an interview in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Java programs,features,spring,springboot technical questions
  • Add your answer
  • Q2. SQL queries (mainly focused on group by,order by)
  • Add your answer
Round 2 - Behavioral 

(2 Questions)

  • Q1. SDLC process, project experience
  • Add your answer
  • Q2. Agile methodology,framework,tools,technical questions (basics) - java,spring,springboot,maven,gradle
  • Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Educational Background,Work Experience
  • Add your answer
  • Q2. Flexible to relocation,CCTC,ECTC,Variable pay,Hike discuss
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on fundamentals and explain your project in-detail

FYI - This is an open position for java,spring boot developer
Anonymous

What people are saying about Infosys

View All
lesspine
Verified Icon
1w
works at
Infosys
Salary negotiation for Service Desk role – 3.2 yrs exp
Hi everyone, I’ve recently cleared the technical rounds for a Service Desk role at Veoneer (Bangalore) and will be attending the HR round on June 11. I have 3.2 years of experience in IT support and service desk operations. A few details about my background: Skills: Active Directory, Outlook configuration, VPN troubleshooting, BitLocker, Zscaler, Azure MFA, Windows OS support, remote desktop tools Current CTC: ₹3 LPA Looking to negotiate for a better package based on skills and experience I’d really appreciate insights from anyone who has Recently interviewed or worked at Veoneer in an IT support or service desk role Can share what salary range I can reasonably negotiate for with 3+ years of experience Any salary negotiation tips specific to Veoneer’s HR process? Thanks a lot in advance! Your input will really help me approach the HR discussion confidently
Got a question about Infosys?
Ask anonymously on communities.
More about working at Infosys
  • HQ - Bengaluru/Bangalore, Karnataka, India
  • IT Services & Consulting
  • 1 Lakh+ Employees (India)
  • Public

Infosys Interview FAQs

How many rounds are there in Infosys Associate Consultant interview?
Infosys interview process usually has 2-3 rounds. The most common rounds in the Infosys interview process are Technical, HR and One-on-one Round.
How to prepare for Infosys 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 Java, SQL, Oracle, Technology Solutions and XML.
What are the top questions asked in Infosys Associate Consultant interview?

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

  1. What are the services you have used in AWS? What are the types of storage in S3...read more
  2. What do you mean by Git stash? what are the different ways of git merge? Can...read more
  3. What are the different types of Jobs in Jenkins, name at least 2, and their us...read more
What are the most common questions asked in Infosys Associate Consultant HR round?

The most common HR questions asked in Infosys Associate Consultant interview are -

  1. What are your salary expectatio...read more
  2. Why are you looking for a chan...read more
  3. Share details of your previous j...read more
How long is the Infosys Associate Consultant interview process?

The duration of Infosys 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 Interviews By Designations

  • Infosys System Engineer Interview Questions
  • Infosys Software Engineer Interview Questions
  • Infosys Technology Analyst Interview Questions
  • Infosys Associate Consultant Interview Questions
  • Infosys Senior Systems Engineer Interview Questions
  • Infosys Software Developer Interview Questions
  • Infosys Business Analyst Interview Questions
  • Infosys Senior Associate Consultant Interview Questions
  • Show more
  • Infosys Consultant Interview Questions
  • Infosys Operations Executive Interview Questions

Interview Questions for Popular Designations

  • Software Developer Interview Questions
  • Software Engineer Interview Questions
  • Consultant Interview Questions
  • System Engineer Interview Questions
  • Associate Software Engineer Interview Questions
  • Associate Interview Questions
  • Senior Associate Interview Questions
  • Project Engineer Interview Questions
  • Show more
  • Senior Consultant Interview Questions
  • Programmer Analyst Interview Questions

Overall Interview Experience Rating

4.2/5

based on 250 interview experiences

Difficulty level

Easy 19%
Moderate 76%
Hard 5%

Duration

Less than 2 weeks 45%
2-4 weeks 33%
4-6 weeks 13%
6-8 weeks 6%
More than 8 weeks 3%
View more

Top Skills for Infosys Associate Consultant

Java Interview Questions & Answers
250 Questions
Web Development Interview Questions & Answers
250 Questions
Software Development Interview Questions & Answers
250 Questions
Cloud Computing Interview Questions & Answers
250 Questions
SQL Interview Questions & Answers
250 Questions
logo
Join Infosys Creating the next opportunity for people, businesses & communities

Associate Consultant Interview Questions from Similar Companies

Capgemini
Capgemini Associate Consultant Interview Questions
3.7
 • 269 Interviews
TCS
TCS Associate Consultant Interview Questions
3.6
 • 118 Interviews
HCLTech
HCLTech Associate Consultant Interview Questions
3.5
 • 51 Interviews
Atos
Atos Associate Consultant Interview Questions
3.8
 • 48 Interviews
Wipro
Wipro Associate Consultant Interview Questions
3.7
 • 34 Interviews
Accenture
Accenture Associate Consultant Interview Questions
3.8
 • 12 Interviews
Cognizant
Cognizant Associate Consultant Interview Questions
3.7
 • 10 Interviews
LTIMindtree
LTIMindtree Associate Consultant Interview Questions
3.7
 • 9 Interviews
Tech Mahindra
Tech Mahindra Associate Consultant Interview Questions
3.5
 • 4 Interviews
HCL Group
HCL Group Associate Consultant Interview Questions
3.6
 • 4 Interviews
View all
Infosys Associate Consultant Salary
based on 20k salaries
₹5 L/yr - ₹13.9 L/yr
11% less than the average Associate Consultant Salary in India
View more details

Infosys Associate Consultant Reviews and Ratings

based on 1.2k reviews

3.5/5

Rating in categories

3.5

Skill development

3.6

Work-life balance

2.8

Salary

4.0

Job security

3.5

Company culture

2.6

Promotions

3.1

Work satisfaction

Explore 1.2k Reviews and Ratings
Infosys Salaries in India
Technology Analyst
55.8k salaries
unlock blur

₹3 L/yr - ₹11.6 L/yr

Senior Systems Engineer
53.3k salaries
unlock blur

₹2.5 L/yr - ₹8.6 L/yr

Technical Lead
35k salaries
unlock blur

₹7.3 L/yr - ₹20 L/yr

System Engineer
32.4k salaries
unlock blur

₹2.4 L/yr - ₹8 L/yr

Senior Associate Consultant
30.8k salaries
unlock blur

₹6.3 L/yr - ₹16.9 L/yr

Explore more salaries
Compare Infosys with
TCS

TCS

3.6
Compare
Wipro

Wipro

3.7
Compare
Cognizant

Cognizant

3.7
Compare
Accenture

Accenture

3.8
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Infosys Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

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

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter