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

Filter interviews by

Infosys Technology Analyst Interview Questions and Answers

Updated 7 Aug 2025

188 Interview questions

A Technology Analyst was asked 1w ago
Q. Explain the details of the project.
Ans. 

The project involved developing a data analytics platform to enhance decision-making in technology management.

  • Conducted a thorough analysis of existing data management systems to identify gaps.

  • Implemented machine learning algorithms to predict technology trends, improving strategic planning.

  • Collaborated with cross-functional teams to gather requirements and ensure alignment with business goals.

  • Utilized visualizati...

🔥 Asked by recruiter 2 times
A Technology Analyst was asked 3w ago
Q. Which design patterns have you utilized in your projects?
Ans. 

I've utilized various design patterns like Singleton, Observer, and Factory in my projects to enhance code maintainability and scalability.

  • Singleton: Ensured a single instance of a configuration manager in a web application.

  • Observer: Implemented in a notification system where multiple components react to user actions.

  • Factory: Used to create different types of user objects based on user roles in an authentication m...

Technology Analyst Interview Questions Asked at Other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Minimum Number of Vertices to Reach All Nodes Problem Statement I ... read more
asked in Infosys
Q3. An atomic Spark job runs for 15 minutes every day. One day, it ru ... read more
Q4. Flatten a Multilevel Sorted Linked List You are given a linked li ... read more
Q5. Box Stacking Problem Statement Consider you are provided with 'n' ... read more
A Technology Analyst was asked 2mo ago
Q. Explain polymorphism with code examples.
Ans. 

Polymorphism allows methods to do different things based on the object type, enhancing flexibility in programming.

  • Polymorphism is a core concept in Object-Oriented Programming (OOP).

  • It allows methods to be defined in multiple forms.

  • There are two types: compile-time (method overloading) and runtime (method overriding).

  • Example of method overloading: a function 'add' can add integers or doubles.

  • Example of method over...

A Technology Analyst was asked 2mo ago
Q. Explain OOPS concepts in detail.
Ans. 

OOP concepts include encapsulation, inheritance, polymorphism, and abstraction, forming the foundation of object-oriented programming.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: A class 'Car' with attributes like 'speed' and methods like 'accelerate()'.

  • Inheritance: Mechanism where a new class derives properties and behavior from an existing class. Example: 'E...

A Technology Analyst was asked 2mo ago
Q. What are the types of SQL joins and can you provide examples?
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 ...

What are the roles & responsibilities of a Technology Analyst at Infosys?

Application Development

  • Design and develop scalable Java-based applications
  • Participate in all stages of the software development lifecycle

Read full roles & responsibilities

A Technology Analyst was asked 4mo ago
Q. If your application experiences a memory leak in production, what steps will you take to identify and address the issue?
Ans. 

Identify and resolve memory leaks through systematic analysis and debugging techniques.

  • Monitor memory usage over time using tools like VisualVM or JProfiler to identify abnormal growth patterns.

  • Use profiling tools to analyze heap dumps and identify objects that are not being released, such as in Java applications.

  • Review code for common memory leak patterns, such as static collections holding references to objects ...

Infosys HR Interview Questions

880 questions and answers

Q. How have you addressed security concerns in your project?
Q. Explain your last project.
Q. What aspects of your resume would you like to highlight?
A Technology Analyst was asked 4mo ago
Q. What is an immutable class?
Ans. 

An immutable class is a class whose instances cannot be modified after creation, ensuring data integrity and thread safety.

  • Immutable classes prevent changes to their state after creation, e.g., String in Java.

  • They often provide methods to return new instances with modified values, e.g., LocalDate in Java.

  • Immutable objects are inherently thread-safe, reducing synchronization issues.

  • Commonly used in functional progr...

Are these interview questions helpful?
A Technology Analyst was asked 4mo ago
Q. What is the importance of Spring Boot in application development?
Ans. 

Spring Boot simplifies Java application development with rapid setup, microservices support, and built-in features.

  • Rapid Development: Spring Boot reduces boilerplate code, allowing developers to create applications quickly. For example, using Spring Initializr.

  • Microservices Architecture: It supports building microservices, enabling scalable and maintainable applications. For instance, Netflix uses Spring Boot.

  • Embe...

A Technology Analyst was asked 4mo ago
Q. What is the importance of Generative AI?
Ans. 

Generative AI is crucial for innovation, creativity, and efficiency across various industries, transforming how we create and interact with technology.

  • Enhances creativity by generating new content, such as art, music, and writing. For example, tools like DALL-E create images from text prompts.

  • Improves efficiency in content creation, allowing businesses to produce marketing materials quickly and at scale.

  • Facilitate...

🔥 Asked by recruiter 4 times
A Technology Analyst was asked 4mo ago
Q. What is the difference between an interface and an abstract class?
Ans. 

Interfaces define contracts for classes, while abstract classes provide a base with shared code and can have implemented methods.

  • An interface can only declare methods, while an abstract class can declare methods and provide some implementation.

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

  • Interfaces are used for defining capabilities (e.g., Comparable), while abstract class...

Infosys Technology Analyst Interview Experiences

171 interviews found

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

Round 1 - Technical 

(2 Questions)

  • Q1. OOPS, DI, Diff between Read-only and const
  • Q2. Types of classes
  • Ans. 

    Types of classes include abstract classes, concrete classes, interface classes, and inner classes.

    • Abstract classes cannot be instantiated and may contain abstract methods.

    • Concrete classes can be instantiated and provide implementations for all methods.

    • Interface classes define a contract for classes to implement.

    • Inner classes are classes defined within another class.

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Strength and weakness
  • Q2. How do you handle difficult situations within a team?
  • Ans. 

    I address difficult situations within a team by promoting open communication, seeking to understand all perspectives, and collaborating on solutions.

    • Promote open communication to address issues early on

    • Seek to understand all perspectives before making decisions

    • Collaborate with team members to find mutually beneficial solutions

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

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Which design patterns have you utilized in your projects?
  • Ans. 

    I've utilized various design patterns like Singleton, Observer, and Factory in my projects to enhance code maintainability and scalability.

    • Singleton: Ensured a single instance of a configuration manager in a web application.

    • Observer: Implemented in a notification system where multiple components react to user actions.

    • Factory: Used to create different types of user objects based on user roles in an authentication module...

  • Answered by AI
  • Q2. How have you addressed security concerns in your project?
  • Ans. 

    I implemented various security measures, including encryption, access controls, and regular audits to safeguard project data.

    • Conducted a thorough risk assessment to identify potential vulnerabilities.

    • Implemented encryption protocols for data at rest and in transit, such as AES-256.

    • Established role-based access controls to limit data access to authorized personnel only.

    • Regularly updated software and systems to patch kno...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Java 8 features
  • Q2. Microservices framework
  • Q3. OOPs concepts & multi threading

Interview Preparation Tips

Interview preparation tips for other job seekers - If going for Java developer role then have basics clear.
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 Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Angular basics,pipes ,life cycle hook pipes.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Core Java, OOPS, Design Patters, Spring Boot, IOC, SOLID Principles, SQL queries
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Tell me yourself
  • Q2. What is your skillset and based on your skill set some straight forward question in round 1 and scenario based question in round 2.
  • Q3. Tell me some analytic function of sql
  • Ans. 

    Analytic functions in SQL are used to perform calculations across a set of rows related to the current row.

    • Common analytic functions include ROW_NUMBER, RANK, DENSE_RANK, LEAD, and LAG.

    • They can be used to calculate running totals, moving averages, and identify duplicates in a dataset.

    • Analytic functions are typically used with the OVER() clause to define the window of rows to be used in the calculation.

  • Answered by AI
  • Q4. Difference between rank and dense rank
Round 2 - One-on-one 

(2 Questions)

  • Q1. I have Oracle EBS APPS.. so I faced questions on PLSQL tuning, exception handling, XML publisher report, P2P cycle with associative table
  • Q2. Bulk Binding, Bulk collect, cursor, dynamic SQL,DML/DDL Trigger

Interview Preparation Tips

Interview preparation tips for other job seekers - Most of the question will come based on your skillset. So mention those skills only in your CV on which you are quite confident.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Difference in POST and PUT
  • Ans. 

    POST is used to create a new resource, while PUT is used to update an existing resource.

    • POST is used to create a new resource on the server.

    • PUT is used to update an existing resource on the server.

    • POST requests are not idempotent, while PUT requests are idempotent.

    • POST requests do not require the client to specify the URI of the new resource, while PUT requests do.

    • Example: POST /users creates a new user, PUT /users/123...

  • Answered by AI
  • Q2. Explain headers with example in HTTP
  • Q3. What is @Qualifier annotation
  • Ans. 

    The @Qualifier annotation is used in Spring framework to specify which bean should be autowired when multiple beans of the same type are present.

    • Used to resolve ambiguity when multiple beans of the same type are present

    • Can be used with @Autowired annotation to specify the bean to be injected

    • Helps in selecting the bean based on a specific qualifier value

  • Answered by AI

Skills evaluated in this interview

Technology Analyst Interview Questions & Answers

user image Dhrumil Patel

posted on 22 May 2024

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

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. 1. Introduces your self 2. Ask about basic datastage questions
  • Q2. 3 . Explain scd 2 and how can we build in datastage 4. Write sql query which is related to join and sub query.
  • Ans. 

    SCD 2 is a type of slowly changing dimension in data warehousing, and can be implemented in DataStage using various techniques.

    • SCD 2 stands for Slowly Changing Dimension Type 2, which tracks historical changes in data over time.

    • In DataStage, SCD 2 can be implemented using the Change Data Capture stage or custom SQL queries.

    • To implement SCD 2 in DataStage, you need to identify the key columns for tracking changes, defin...

  • Answered by AI
  • Q3. 5. How to improve performance in Datastage
  • Ans. 

    To improve performance in Datastage, optimize job design, use efficient coding practices, utilize parallel processing, and monitor job performance.

    • Optimize job design by reducing unnecessary stages and transformations

    • Use efficient coding practices such as avoiding unnecessary data reads and writes

    • Utilize parallel processing to take advantage of multiple CPU cores

    • Monitor job performance using Datastage Director or other...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. 1. Introduce yourself self
  • Q2. 2. Why are you planing to switch job
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Quants, reasoning, english

Round 2 - Coding Test 

With oops concepts, data structures

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Change management
  • Q2. Dns dhcp troubleshooting

What people are saying about Infosys

View All
lesspine
Verified Icon
1w
works at
Infosys
Seeking insights on TCS offer letter
Hii All, I have attended interview for service desk role in tcs at the end of June my tech round and managerial round later I have submitted all my documents in ibegin portal all are showing verified in the portal and in the 2nd week of July I have completed my hr round and later multiple follow ups given update like internal approvals will take time it's been more than month I have contacted hr and he said like internal approvals will take time I asked will it be a month she said it will take more than a month no clear timeline. So will I get offer letter or not seeking insights on this.
Got a question about Infosys?
Ask anonymously on communities.

Infosys Interview FAQs

How many rounds are there in Infosys Technology Analyst job 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 Technology Analyst job 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 SDLC, Performance Engineering, Agile, Java and Application Development.
What are the top questions asked in Infosys Technology Analyst interview for job?

Some of the top questions asked at the Infosys Technology Analyst interview for job -

  1. An atomic spark job runs for 15 mins everyday ,one day it is running for more t...read more
  2. What is a dataframe and how it differs from datase...read more
  3. 4.How to communicate between two rest API and how to implement security for res...read more
What are the most common questions asked in Infosys Technology Analyst HR round for job?

The most common HR questions asked in Infosys Technology Analyst interview are for job -

  1. why should we hire y...read more
  2. What are your salary expectatio...read more
  3. Tell me about yourse...read more
How long is the Infosys Technology Analyst interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 102 interview experiences

Difficulty level

Easy 23%
Moderate 74%
Hard 4%

Duration

Less than 2 weeks 58%
2-4 weeks 28%
4-6 weeks 5%
6-8 weeks 4%
More than 8 weeks 5%
View more
Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Technology Analyst Interview Questions
3.5
 • 11.3k Interviews
IBM Technology Analyst Interview Questions
3.9
 • 2.5k Interviews
View all
Infosys Technology Analyst Salary
based on 55k salaries
₹4.8 L/yr - ₹10 L/yr
5% less than the average Technology Analyst Salary in India
View more details

Infosys Technology Analyst Reviews and Ratings

based on 4.7k reviews

3.6/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

2.6

Salary

4.2

Job security

3.8

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 4.7k Reviews and Ratings
Technology Analyst
55k salaries
unlock blur

₹4.8 L/yr - ₹10 L/yr

Senior Systems Engineer
54.6k salaries
unlock blur

₹2.5 L/yr - ₹6.3 L/yr

Technical Lead
35.5k salaries
unlock blur

₹9.5 L/yr - ₹16.5 L/yr

System Engineer
32.7k salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Senior Associate Consultant
32.6k salaries
unlock blur

₹8.3 L/yr - ₹15 L/yr

Explore more salaries
Compare Infosys with

TCS

3.5
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.7
Compare
write
Share an Interview