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 Associate Consultant Developer Interview Questions and Answers

Updated 15 May 2024

Infosys Associate Consultant Developer Interview Experiences

2 interviews found

I applied via Naukri.com and was interviewed in May 2022. 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 

(5 Questions)

  • Q1. Tell me about yourself
  • Q2. Explain about your current project experience
  • Q3. Explain Java 8 feature with examples
  • Ans. 

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

    • Lambda expressions allow for functional programming and concise code

    • Functional interfaces are interfaces with a single abstract method, used for lambda expressions

    • Streams allow for efficient processing of collections and parallel processing

    • Method references simplify lambda expressions by referring to existing methods

    • ...

  • Answered by AI
  • Q4. Explain Internal working of HashMap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to retrieve values quickly.

    • HashMap uses an array of buckets to store key-value pairs

    • Each bucket contains a linked list of entries with the same hash code

    • When a key-value pair is added, its hash code is used to determine the bucket and the entry is added to the linked list

    • When a value is retrieved, the key's hash code is used to find the bucket and...

  • Answered by AI
  • Q5. Explain HTTP methods
  • Ans. 

    HTTP methods are actions that can be performed on a web server to retrieve, update, or delete resources.

    • GET - retrieve a resource

    • POST - create a new resource

    • PUT - update an existing resource

    • DELETE - delete a resource

    • HEAD - retrieve metadata about a resource

    • OPTIONS - retrieve information about the communication options available for a resource

    • PATCH - update a resource partially

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and Be Confident

Keep learning and utilise your experience

Skills evaluated in this interview

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 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Related to salesforce admin and developer qsts
  • Q2. Batch; asynchronous;Integration
Round 2 - HR 

(1 Question)

  • Q1. Negotiation nd where do you see yourself in 5 yrs

Associate Consultant Developer Interview Questions Asked at Other Companies

asked in Capgemini
Q1. type of constructors and how it work
asked in Infosys
Q2. Explain Java 8 feature with examples
asked in Infosys
Q3. Explain Internal working of HashMap
asked in Infosys
Q4. Explain HTTP methods
Q5. AWT Token working

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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. All questions are from Java t point and geeks from geeks
  • Q2. Type of constructors and how it work
  • Ans. 

    Constructors are special methods used to initialize objects in a class.

    • Constructors have the same name as the class and do not have a return type.

    • They are called automatically when an object is created.

    • Constructors can be parameterized to accept values for initializing object properties.

    • Default constructors are provided by the compiler if no constructor is defined.

    • Example: public class Person { public Person(String nam

  • Answered by AI
  • Q3. Method, class, object and it'suse
  • Q4. Method overloading and overriding Collection framework etc
Round 3 - Aptitude Test 

It was an English test and mail writing test

Round 4 - HR 

(1 Question)

  • Q1. Salary negotiation
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

An aptitude test is an assessment to measure a candidate mental aptitude/mental ability

Round 2 - Technical 

(3 Questions)

  • Q1. Can you briefly Tell us about yourself?
  • Q2. What do you consider to be your strongest points?
  • Q3. Which programming languages do you use regularly in your work
Round 3 - Group Discussion 

A group discussion is a structured conversation in which participants share their ideas, perspectives, and solutions on a specific topic.

Round 4 - HR 

(2 Questions)

  • Q1. What motivates you to seek employment at Wipro?
  • Q2. What are your long-term career goals?
Round 5 - Assignment 

Assignment details refer to the specifics of an assignment, including any documents and/or emails or subsequent correspondence between the company and the client.

Interview Preparation Tips

Topics to prepare for Wipro Software Developer interview:
  • Your academic achievement
  • Responsibility related to your p
  • The way you address mistakes at
Interview preparation tips for other job seekers - Reflect on the activities you enjoy and what brings you happiness, while also taking into account your skills and strengths.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Difference between display none, visibility hidden and opacity 0 in CSS
  • Ans. 

    display none hides the element completely, visibility hidden hides the element but still takes up space, opacity 0 makes the element transparent.

    • display none removes the element from the layout

    • visibility hidden hides the element but it still occupies space

    • opacity 0 makes the element transparent but still occupies space

    • Example: display: none; visibility: hidden; opacity: 0;

  • Answered by AI
  • Q2. Write a polyfill for javascript method "filter"
  • Ans. 

    Polyfill for JavaScript method 'filter'

    • Create a function called 'filter' that takes a callback function as an argument

    • Loop through the array and apply the callback function to each element

    • If the callback function returns true, add the element to a new array and return it

  • Answered by AI
  • Q3. Explain ShadowDOM
  • Ans. 

    Shadow DOM is a way to encapsulate the styling and structure of a web component, preventing styles from leaking out and clashing with the rest of the page.

    • Shadow DOM allows for creating self-contained components with their own DOM tree and styling.

    • It helps in preventing styles from the main document affecting the component and vice versa.

    • Shadow DOM can be created using the 'attachShadow' method in JavaScript.

    • It is comm...

  • Answered by AI
  • Q4. Explain Currying in Javascript
  • Ans. 

    Currying is a technique in JavaScript where a function with multiple arguments is transformed into a sequence of functions, each taking a single argument.

    • Currying allows you to create reusable functions with partial application of arguments.

    • It helps in creating more flexible and composable functions.

    • Example: const add = (a) => (b) => a + b; const add5 = add(5); console.log(add5(3)); // Output: 8

  • Answered by AI
  • Q5. What is Event Deligation in javascript
  • Ans. 

    Event delegation in JavaScript is a technique where a single event listener is attached to a parent element to handle events for multiple child elements.

    • Event delegation helps improve performance by reducing the number of event listeners.

    • It is useful for dynamically created elements or elements with similar behavior.

    • Event delegation works by utilizing event bubbling, where events on child elements bubble up to the pare

  • Answered by AI

Interview Preparation Tips

Topics to prepare for TCS Associate Consultant interview:
  • Javascript Basics
  • React.Js
  • Javascript
Interview preparation tips for other job seekers - Having deep knowledge in Javascript is must for React.JS interview.

Skills evaluated in this interview

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Percentage and averages, number and alphabet series, compound interest (CI) and simple interest (SI).

Round 2 - Coding Test 

Basic programs include: 1. A program to perform the addition of two numbers, 2. A program to print a star pattern, and 3. A program to generate a triangle output, among others.

Round 3 - HR 

(4 Questions)

  • Q1. What challenges did we face?
  • Ans. 

    We faced challenges related to communication, resource allocation, and project timelines.

    • Communication breakdown between team members

    • Limited resources available for the project

    • Struggling to meet project deadlines

  • Answered by AI
  • Q2. Where do you see yourself in the next five years?
  • Ans. 

    In five years, I see myself as a senior consultant leading projects and mentoring junior team members.

    • Advancing to a senior consultant role

    • Leading projects and teams

    • Mentoring junior team members

    • Continuing professional development through training and certifications

  • Answered by AI
  • Q3. What strategies can be employed to overcome failures?
  • Ans. 

    Strategies to overcome failures include learning from mistakes, staying positive, seeking feedback, and setting new goals.

    • Learn from mistakes by analyzing what went wrong and how to improve

    • Stay positive and maintain a growth mindset to bounce back from setbacks

    • Seek feedback from mentors or colleagues to gain different perspectives

    • Set new goals and create a plan to move forward with renewed motivation

  • Answered by AI
  • Q4. Are you able to work effectively under pressure?
  • Ans. 

    Yes, I thrive under pressure and can effectively manage my time and priorities to meet deadlines.

    • I have experience working in fast-paced environments where quick decision-making and adaptability are key.

    • I am able to stay calm and focused under pressure, allowing me to deliver high-quality work even in challenging situations.

    • I prioritize tasks effectively to ensure that deadlines are met without compromising on quality.

    • ...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Java Based Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I believe this is one of the best companies for a fresher to learn new concepts and explore various opportunities.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at Indraprastha Institute of Information Technology (IIIT), Delhi and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

First round was Aptitude which was quite easy

Round 2 - Technical 

(2 Questions)

  • Q1. Resume bases Question
  • Q2. Question on OOPS
Round 3 - Technical 

(1 Question)

  • Q1. Resume and scenario based question
Round 4 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a software developer with 5 years of experience in Java and Python.

    • Experienced in Java and Python programming languages

    • Worked on developing web applications using Spring framework

    • Familiar with Agile development methodologies

  • Answered by AI
  • Q2. What challenges do you faced during your project and how you approached them
  • Ans. 

    I faced challenges with integrating third-party APIs and resolved them by thoroughly researching documentation and seeking help from colleagues.

    • Integrating third-party APIs required understanding complex documentation

    • Encountered issues with data formatting and authentication

    • Collaborated with team members to troubleshoot and find solutions

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What Is difference between SAP ERP AND S/4 HANA
  • Ans. 

    SAP ERP is the traditional enterprise resource planning software, while S/4 HANA is the next-generation ERP suite built on the SAP HANA platform.

    • SAP ERP is based on traditional on-premise architecture, while S/4 HANA is designed for cloud deployment.

    • SAP ERP uses a row-based database structure, while S/4 HANA utilizes an in-memory columnar database for faster data processing.

    • SAP ERP requires separate systems for transac...

  • Answered by AI
  • Q2. What are the steps for implementation in SAP
  • Ans. 

    Implementation steps in SAP involve planning, configuration, testing, training, and deployment.

    • 1. Planning phase involves defining project scope, objectives, and timeline.

    • 2. Configuration phase includes setting up SAP modules according to business requirements.

    • 3. Testing phase ensures that the system functions correctly and meets user needs.

    • 4. Training phase involves educating users on how to use the SAP system effecti...

  • Answered by AI
  • Q3. What is RICEF? explain
  • Ans. 

    RICEF is a prioritization framework used in project management to rank tasks based on their impact and effort required.

    • RICEF stands for Reach, Impact, Confidence, and Effort.

    • Reach refers to the number of people affected by the task.

    • Impact is the potential positive outcome of the task.

    • Confidence is how sure you are about the estimates for Reach and Impact.

    • Effort is the amount of time and resources needed to complete the...

  • Answered by AI
  • Q4. Have you worked with APP? EXPLAIN THE STEPS
  • Ans. 

    Yes, I have worked with APP. The steps involve designing, developing, testing, and deploying the application.

    • Design the user interface and functionality of the APP

    • Develop the APP using programming languages like Java, Swift, or React Native

    • Test the APP for bugs and errors

    • Deploy the APP to app stores or internal servers for users to access

  • Answered by AI
  • Q5. How would you configure material?
  • Ans. 

    Material can be configured by adjusting its properties and parameters to meet specific requirements.

    • Identify the specific requirements for the material

    • Adjust properties such as density, strength, and flexibility

    • Consider parameters like temperature resistance and chemical compatibility

    • Test the configured material to ensure it meets the desired specifications

  • Answered by AI
  • Q6. What is your role in your current company
  • Ans. 

    I am responsible for managing client relationships, providing strategic advice, and overseeing project implementation.

    • Managing client relationships

    • Providing strategic advice

    • Overseeing project implementation

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture Consultant interview:
  • SAP SD
  • SAP FICO

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

I have three questions: 1. How to handle null values? 2. What are ranking functions? 3. Can you explain self joins?

Round 2 - One-on-one 

(2 Questions)

  • Q1. Project description
  • Q2. Tools used
  • Ans. 

    I primarily use tools such as Microsoft Excel, PowerPoint, and Tableau for data analysis and visualization.

    • Microsoft Excel for data manipulation and analysis

    • PowerPoint for creating presentations

    • Tableau for data visualization

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thoroughly for scenario-based SQL questions for the coding round.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Every single oops concepts
  • Q2. Every sql questions possiible
Round 2 - HR 

(2 Questions)

  • Q1. I attended only technical not yet results announced
  • Q2. I attended only technical not yet result announced

Infosys Interview FAQs

How many rounds are there in Infosys Associate Consultant Developer interview?
Infosys interview process usually has 2-3 rounds. The most common rounds in the Infosys interview process are Technical, HR and Resume Shortlist.
What are the top questions asked in Infosys Associate Consultant Developer interview?

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

  1. Explain Java 8 feature with examp...read more
  2. Explain Internal working of Hash...read more
  3. Explain HTTP meth...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Infosys interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
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.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
View all
Infosys Associate Consultant Developer Salary
based on 183 salaries
₹5.2 L/yr - ₹15.5 L/yr
At par with the average Associate Consultant Developer Salary in India
View more details

Infosys Associate Consultant Developer Reviews and Ratings

based on 12 reviews

3.6/5

Rating in categories

4.0

Skill development

4.3

Work-Life balance

2.9

Salary & Benefits

4.3

Job Security

3.8

Company culture

2.9

Promotions/Appraisal

3.7

Work Satisfaction

Explore 12 Reviews and Ratings
Technology Analyst
56.3k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
49.5k 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 - ₹16.8 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