Logo

Get AmbitionBox App

Faster and better experience!

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
    WINNERS AWAITED!
    • ABECA 2025
      WINNERS AWAITED!

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    • AmbitionBox Best Places to Work 2021

      1st Edition

For Employers
Upload Button Icon Add office photos
logo
Engaged 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.6

based on 42.1k Reviews

Play video Play video Video summary
  • About
  • Reviews
    42.1k
  • Salaries
    4.8L
  • Interviews
    7.8k
  • Jobs
    1.6k
  • Benefits
    5.4k
  • Photos
    117
  • Posts
    66

Filter interviews by

Infosys Associate Software Engineer Interview Questions and Answers

Updated 16 Apr 2025

8 Interview questions

An Associate Software Engineer was asked 1mo ago
Q. What is the difference between datesinperiod and datesinbetween?
Ans. 

datesInPeriod returns dates within a specified range, while datesInBetween focuses on dates strictly between two endpoints.

  • datesInPeriod includes start and end dates in the result.

  • Example: datesInPeriod('2023-01-01', '2023-01-10') returns dates from Jan 1 to Jan 10.

  • datesInBetween excludes the start and end dates.

  • Example: datesInBetween('2023-01-01', '2023-01-10') returns dates from Jan 2 to Jan 9.

  • datesInPeriod is ...

An Associate Software Engineer was asked 11mo ago
Q. Why are the static and final keywords used?
Ans. 

Static and final keywords are used in Java to define class-level variables and constants respectively.

  • Static keyword is used to define class-level variables and methods, which are shared among all instances of the class.

  • Final keyword is used to define constants that cannot be changed once initialized.

  • Static variables are accessed using the class name, while final variables are accessed using object references.

  • Exam...

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
View answers (2)
asked in Hexaware Technologies
Q2. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
View answer (1)
asked in Clarivate
Q3. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
View answer (1)
asked in CGI Group
Q4. Frog Jump Problem Statement A frog is positioned on the first ste ... read more
View answer (1)
asked in Gainsight
Q5. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
View answer (1)
View All
An Associate Software Engineer was asked
Q. Implement multi-threading.
Ans. 

Multi threading is a technique to execute multiple threads concurrently, improving performance and responsiveness.

  • Threads are lightweight processes that share the same memory space.

  • They can be created using classes like Thread or by implementing the Runnable interface.

  • Thread synchronization is important to avoid race conditions and ensure data integrity.

  • Common multi-threading concepts include thread pools, locks, ...

An Associate Software Engineer was asked
Q. What are the differences between LAN, MAN, and WAN?
Ans. 

LAN is a local network, MAN is a metropolitan network, and WAN is a wide area network.

  • LAN covers a small area like a home, office, or building.

  • MAN covers a larger area like a city or town.

  • WAN covers a wide area like a country or even the whole world.

  • LAN has high data transfer rates and low latency.

  • MAN has moderate data transfer rates and latency.

  • WAN has lower data transfer rates and higher latency.

  • Examples of LAN ...

What people are saying about Infosys

View All
berlin001
Verified Icon
2w (edited)
works at
Infosys
Infosys to Deloitte India Switch
Hi Folks, I am currently working in Infosys from last 3.5 years. I got an offer from Deloitte India for Consultant role with almost 100% hike. Anyone knows about work culture, pressure and WFO guidelines in Deloitte India ? Will this be a worth switch ? PS: I do have offer from Accenture also but it is less (almost 3 LPA less than Deloitte). Anyone guidance will be appreciated. Thank you.
Got a question about Infosys?
Ask anonymously on communities.
An Associate Software Engineer was asked
Q. Do you have experience with Java coding?
Ans. 

Yes, I have knowledge of coding and Java.

  • I have experience in coding with Java programming language.

  • I have worked on various Java projects during my academic and professional career.

  • I am familiar with Java concepts such as object-oriented programming, data structures, and algorithms.

  • I have also used Java frameworks such as Spring and Hibernate.

  • I am comfortable with writing and debugging Java code.

An Associate Software Engineer was asked
Q. Given an integer, count the number of set bits (1s) in its binary representation.
Ans. 

Count set bit in a given number

  • Use bitwise AND operator with 1 to check if the rightmost bit is set

  • Shift the number to the right by 1 bit after each iteration

  • Repeat until the number becomes 0

  • Add 1 to the count for each set bit

🔥 Asked by recruiter 7 times
An Associate Software Engineer was asked
Q. What is cloud computing?
Ans. 

Cloud computing is the delivery of computing services over the internet.

  • Cloud computing allows users to access data and applications from anywhere with an internet connection.

  • It eliminates the need for physical servers and hardware, reducing costs and increasing scalability.

  • Examples of cloud computing services include Amazon Web Services, Microsoft Azure, and Google Cloud Platform.

Are these interview questions helpful?
An Associate Software Engineer was asked
Q. What is DBMS, What would you do in case of overload in database?
Ans. 

DBMS is a software system that manages databases. In case of overload, optimize queries, add indexes, or scale up hardware.

  • DBMS stands for Database Management System

  • It is a software system that manages databases

  • In case of overload, optimize queries to reduce load on the database

  • Add indexes to improve query performance

  • Scale up hardware by adding more memory, CPU, or storage

  • Use load balancing to distribute the load ...

Infosys Associate Software Engineer Interview Experiences

22 interviews found

Associate Software Engineer Interview Questions & Answers

user image Akshay Pathania

posted on 7 Jun 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between abstract class and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface cannot have any of these.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract classes are used to provide a common base for multiple classes, while interfaces define a contract that implementin...

  • Answered by AI
    Add your answer
  • Q2. Why static and final key words used
  • Ans. 

    Static and final keywords are used in Java to define class-level variables and constants respectively.

    • Static keyword is used to define class-level variables and methods, which are shared among all instances of the class.

    • Final keyword is used to define constants that cannot be changed once initialized.

    • Static variables are accessed using the class name, while final variables are accessed using object references.

    • Example: ...

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Associate Software Engineer Interview Questions & Answers

user image Sandeep Avvari

posted on 16 Apr 2025

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

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. Difference between datesinperiod and datesinbetween?
  • Ans. 

    datesInPeriod returns dates within a specified range, while datesInBetween focuses on dates strictly between two endpoints.

    • datesInPeriod includes start and end dates in the result.

    • Example: datesInPeriod('2023-01-01', '2023-01-10') returns dates from Jan 1 to Jan 10.

    • datesInBetween excludes the start and end dates.

    • Example: datesInBetween('2023-01-01', '2023-01-10') returns dates from Jan 2 to Jan 9.

    • datesInPeriod is usefu...

  • Answered by AI
    Add your answer
  • Q2. What is row level security?
  • Ans. 

    Row level security restricts data access at the row level based on user roles or attributes.

    • Enables fine-grained access control to database rows.

    • Users can only see data they are authorized to access.

    • Example: A sales database where sales reps can only view their own sales records.

    • Implemented using policies or filters in database systems like PostgreSQL.

    • Helps in compliance with data privacy regulations.

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 8 Apr 2024

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

I applied via LinkedIn and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. SAP SD related questions based on my resume and project details.
  • Add your answer
  • Q2. Told whatever I had done in my projects
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Read JD
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 2 Feb 2024

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

(2 Questions)

  • Q1. What is aggregation,stacks,hasing etc
  • Ans. 

    Aggregation is a concept in object-oriented programming where one object is composed of multiple objects.

    • Aggregation is a form of association where one class contains references to other classes.

    • It represents a 'has-a' relationship between objects.

    • For example, a car has an engine, wheels, and seats.

    • Stacks are data structures that follow the Last-In-First-Out (LIFO) principle.

    • They are used to store and retrieve data in ...

  • Answered by AI
    Add your answer
  • Q2. Implement the multi threading
  • Ans. 

    Multi threading is a technique to execute multiple threads concurrently, improving performance and responsiveness.

    • Threads are lightweight processes that share the same memory space.

    • They can be created using classes like Thread or by implementing the Runnable interface.

    • Thread synchronization is important to avoid race conditions and ensure data integrity.

    • Common multi-threading concepts include thread pools, locks, semap...

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 31 May 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

General Aptitude questions

Round 2 - Coding Test 

Coding questions from haker rank

Interview Preparation Tips

Interview preparation tips for other job seekers - Not bad
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Vishwas Mohan

posted on 16 Nov 2022

I applied via Referral and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. All the basic question and answers related to technical domain. And make sure to get thorough with the resume content.
  • Add your answer
  • Q2. Answer all the asked questions
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Salary related question
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to answer all the questions calmly.
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 23 Nov 2022

I applied via Naukri.com and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Reasoning, verable test, coding

Round 3 - Assignment 

Reasoning, aptitude test, coding test

Interview Preparation Tips

Interview preparation tips for other job seekers - Market yourself. ...
Apply even if you're not fully qualified. ...
Job search like it's your job. ...
Use informational interviews to network. ...
Set yourself apart with letters of recommendation. ...
Know yourself and what you want. ...
Pump yourself up and stay positive
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 7 Oct 2022

I applied via Naukri.com

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 - BH 

(3 Questions)

  • Q1. What u choice dis company
  • Add your answer
  • Q2. Introduction of ourself
  • Ans. 

    I am a software engineer with experience in Java and Python.

    • I have a Bachelor's degree in Computer Science.

    • I have worked on projects involving web development and data analysis.

    • I am familiar with Agile methodologies and have experience working in a team environment.

  • Answered by AI
    Add your answer
  • Q3. Do u know about coding ,java
  • Ans. 

    Yes, I have knowledge of coding and Java.

    • I have experience in coding with Java programming language.

    • I have worked on various Java projects during my academic and professional career.

    • I am familiar with Java concepts such as object-oriented programming, data structures, and algorithms.

    • I have also used Java frameworks such as Spring and Hibernate.

    • I am comfortable with writing and debugging Java code.

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - I advice some company is best they take us without asking questions

Skills evaluated in this interview

Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Nov 2021

Interview Questionnaire 

7 Questions

  • Q1. About project
  • Add your answer
  • Q2. I said about my project.
  • Add your answer
  • Q3. How do u manage pressure?
  • Add your answer
  • Q4. I analyse the problem and then find the solujtions
  • Add your answer
  • Q5. About project
  • Add your answer
  • Q6. I said about my project.
  • Add your answer
  • Q7. How do u manage pressure?
  • Ans. 

    Managing pressure involves staying calm, prioritizing tasks, and using effective strategies to maintain productivity and focus.

    • Stay Organized: I use tools like Trello or Asana to prioritize tasks and break them down into manageable steps, which helps me stay focused.

    • Practice Mindfulness: I take short breaks to practice deep breathing or meditation, which helps clear my mind and reduce stress during high-pressure situat...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well about your project
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Nov 2021

I applied via Naukri.com

Interview Questionnaire 

3 Questions

  • Q1. What is SDLC ?
  • Ans. 

    SDLC stands for Software Development Life Cycle.

    • It is a process used to design, develop, test, and deploy software.

    • It consists of several phases such as planning, analysis, design, implementation, testing, and maintenance.

    • It helps to ensure that the software is developed efficiently, on time, and within budget.

    • Examples of SDLC models include Waterfall, Agile, and DevOps.

  • Answered by AI
    Add your answer
  • Q2. Basic questions on oops
  • Add your answer
  • Q3. What is cloud computing?
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - The overall interview was easy and conducted for 30 minutes.

Skills evaluated in this interview

Anonymous
More about working at Infosys
golden leaf award AmbitionBox awards

#19 Best Mega Company - 2022

golden leaf award
golden leaf award AmbitionBox awards

#12 Best Mega Company - 2021

golden leaf award
  • HQ - Bengaluru/Bangalore, Karnataka, India
  • IT Services & Consulting
  • 1 Lakh+ Employees (India)
  • Public

Infosys Interview FAQs

How many rounds are there in Infosys Associate Software Engineer interview?
Infosys interview process usually has 2 rounds. The most common rounds in the Infosys interview process are Resume Shortlist, Technical and Aptitude Test.
What are the top questions asked in Infosys Associate Software Engineer interview?

Some of the top questions asked at the Infosys Associate Software Engineer interview -

  1. What is DBMS, What would you do in case of overload in databa...read more
  2. Describe last project. What is entity framewor...read more
  3. Why static and final key words u...read more

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 Operations Executive Interview Questions
  • Infosys Consultant Interview Questions

Overall Interview Experience Rating

4.3/5

based on 7 interview experiences

Difficulty level

Easy 20%
Moderate 80%

Duration

Less than 2 weeks 60%
2-4 weeks 20%
4-6 weeks 20%
View more

Associate Software Engineer Interview Questions from Similar Companies

Accenture
Accenture Associate Software Engineer Interview Questions
3.8
 • 648 Interviews
Tech Mahindra
Tech Mahindra Associate Software Engineer Interview Questions
3.5
 • 125 Interviews
TCS
TCS Associate Software Engineer Interview Questions
3.6
 • 98 Interviews
DXC Technology
DXC Technology Associate Software Engineer Interview Questions
3.7
 • 51 Interviews
Capgemini
Capgemini Associate Software Engineer Interview Questions
3.7
 • 33 Interviews
Cognizant
Cognizant Associate Software Engineer Interview Questions
3.7
 • 27 Interviews
IBM
IBM Associate Software Engineer Interview Questions
4.0
 • 20 Interviews
HCLTech
HCLTech Associate Software Engineer Interview Questions
3.5
 • 17 Interviews
Wipro
Wipro Associate Software Engineer Interview Questions
3.7
 • 13 Interviews
LTIMindtree
LTIMindtree Associate Software Engineer Interview Questions
3.7
 • 9 Interviews
View all
Infosys Associate Software Engineer Salary
based on 217 salaries
₹2.3 L/yr - ₹9 L/yr
8% less than the average Associate Software Engineer Salary in India
View more details

Infosys Associate Software Engineer Reviews and Ratings

based on 19 reviews

3.8/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

3.8

Salary

3.8

Job security

3.8

Company culture

3.6

Promotions

3.6

Work satisfaction

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

₹3 L/yr - ₹11.5 L/yr

Senior Systems Engineer
52.6k salaries
unlock blur

₹2.5 L/yr - ₹8.1 L/yr

Technical Lead
34.7k salaries
unlock blur

₹7.3 L/yr - ₹20 L/yr

System Engineer
32.2k salaries
unlock blur

₹2.3 L/yr - ₹5.3 L/yr

Senior Associate Consultant
30.1k salaries
unlock blur

₹6.3 L/yr - ₹16.8 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 >
  • Infosys Associate Software Engineer Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Helping over 1 Crore job seekers every month in choosing their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

6 Lakh+

Interviews

1 Crore+

Users/Month

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 2026
  • ABECA 2025 winners awaited tag
  • ABECA 2024
  • AmbitionBox Best Places to Work 2022
  • AmbitionBox Best Places to Work 2021
  • Invite employees to rate
AmbitionBox
  • About Us
  • 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