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

192 Interview questions

A Technology Analyst was asked 10mo ago
Q. What is a switch?
Ans. 

A switch is a networking device that connects devices within a local area network (LAN) and forwards data packets between them.

  • Switches operate at the data link layer of the OSI model.

  • They use MAC addresses to forward data to the correct destination.

  • Switches increase network performance by reducing collisions and segmenting traffic.

  • Examples of switches include Cisco Catalyst series, Netgear ProSAFE series, and TP-...

A Technology Analyst was asked 10mo ago
Q. Explain Angular performance improvements.
Ans. 

Angular performance improvements involve optimizing code, reducing load times, and minimizing rendering cycles.

  • Use lazy loading to only load components when needed

  • Optimize change detection by using OnPush strategy

  • Minimize DOM manipulation by using ngZone

  • Implement server-side rendering for faster initial page load

  • Use AOT (Ahead-of-Time) compilation to reduce bundle size

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 11mo ago
Q. What is the difference between boxing and unboxing?
Ans. 

Boxing is the process of converting a value type to a reference type, while unboxing is the process of converting a reference type to a value type.

  • Boxing is implicit, while unboxing is explicit.

  • Boxing involves converting a value type to an object type, while unboxing involves extracting the value type from the object type.

  • Boxing creates a new reference type object on the heap, while unboxing retrieves the original...

A Technology Analyst was asked 11mo ago
Q. Tell me about some analytic functions in 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.

A Technology Analyst was asked 11mo ago
Q. What is the difference between RANK and DENSE_RANK?
Ans. 

Rank assigns unique ranks to each distinct value, while dense rank assigns consecutive ranks to each distinct value.

  • Rank leaves gaps between ranks if there are ties, while dense rank does not

  • Rank function is used to assign a unique rank to each distinct row, while dense rank function is used to assign consecutive ranks to each distinct row

  • Example: If we have values 10, 20, 20, 30 - Rank would assign ranks as 1, 2,...

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 12mo ago
Q. Explain the Kestrel server.
Ans. 

Kersal server is a type of server used for hosting websites and applications.

  • Kersal server is known for its reliability and performance.

  • It is often used by businesses to host their websites and applications.

  • Kersal server offers features like high uptime, security, and scalability.

  • Examples of Kersal server providers include AWS, Google Cloud, and Microsoft Azure.

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?
🔥 Asked by recruiter 9 times
A Technology Analyst was asked 12mo ago
Q. What is dependency injection?
Ans. 

Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

  • Dependency injection helps in achieving loose coupling between classes.

  • It allows for easier testing and maintenance of code.

  • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

Are these interview questions helpful?
A Technology Analyst was asked 12mo ago
Q. What is the mv command?
Ans. 

mv command is used in Unix and Linux operating systems to move files or directories from one location to another.

  • Used to rename files or directories by moving them to a new location

  • Syntax: mv [options] source destination

  • Example: mv file1.txt /path/to/new/location/

A Technology Analyst was asked 12mo ago
Q. What is the cp command?
Ans. 

cp command is used in Unix and Linux operating systems to copy files and directories.

  • Used to copy files and directories from one location to another

  • Syntax: cp [options] source destination

  • Options include -r for recursive copying, -i for interactive mode, -v for verbose output

  • Example: cp file1.txt /path/to/directory/

A Technology Analyst was asked
Q. What is a mutating error?
Ans. 

A mutating error occurs when a program attempts to modify a data structure while iterating over it.

  • Occurs when a program tries to modify a collection (e.g. array, list) while iterating through it

  • Can lead to unexpected behavior or errors in the program

  • Common in languages like Python, where modifying a list while iterating over it can cause a mutating error

Infosys Technology Analyst Interview Experiences

291 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - 0ther 

(1 Question)

  • Q1. This is not good company they are firing with out information for employee even families also maintain they will not remove but fine one morthing employees not supporting to other colleges also so i just t...
Round 2 - Technical 

(2 Questions)

  • Q1. Its a good companies
  • Q2. It's a good company
Round 3 - HR 

(1 Question)

  • Q1. Its a good decision

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a good device company

Technology Analyst Interview Questions & Answers

user image Zibreel Siddiqui

posted on 7 Jan 2025

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

(2 Questions)

  • Q1. What is boxing and unboxing
  • Q2. What is garbage collection
Round 2 - Technical 

(2 Questions)

  • Q1. What is mvc and razor
  • Q2. What is software development
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What are the differences between ListView and RecyclerView in Android development?
  • Ans. 

    ListView is a legacy view for displaying lists in Android, while RecyclerView is a more flexible and efficient replacement.

    • ListView is less efficient in terms of memory and performance compared to RecyclerView.

    • RecyclerView provides better performance by recycling views and separating the responsibilities of layout and data management.

    • RecyclerView supports more advanced features like animations and item decorations.

    • List...

  • Answered by AI
  • Q2. What are services and the work manager in the context of software development?
  • Ans. 

    Services and work manager are components in software development that help manage background tasks and processes.

    • Services are components that run in the background to perform long-running operations without affecting the user interface.

    • Work manager is a library that helps manage background tasks efficiently, taking into account factors like battery life and network availability.

    • Services can be used for tasks like downl...

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

I applied via Job Portal

Round 1 - Technical 

(1 Question)

  • Q1. What is the method to combine multiple lists into a single list?
  • Ans. 

    Use the extend() method in Python to combine multiple lists into a single list.

    • Use the extend() method to add elements from one list to another list.

    • Alternatively, you can use the + operator to concatenate lists.

    • Example: list1 = [1, 2, 3], list2 = [4, 5, 6], combined_list = list1 + list2

  • Answered by AI
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. What are the high-level steps involved in cloning Oracle E-Business Suite R12.2? How can you change the application password in R12.2? If a tablespace reaches its space threshold, what steps can be taken t...
  • Ans. 

    Cloning Oracle E-Business Suite R12.2 involves several key steps for replication and maintenance.

    • 1. Prepare the source instance by ensuring it is in a stable state.

    • 2. Create a backup of the source database and application files.

    • 3. Use the Rapid Clone utility to clone the instance.

    • 4. Update the configuration files for the new instance.

    • 5. Run post-cloning scripts to finalize the setup.

    • 6. Verify the cloned instance by per...

  • Answered by AI
  • Q2. If a tablespace reaches its space threshold, what steps can be taken to resolve the issue? Could you explain the various phases of the Application Development Operations (ADOP)? What actions should be take...
  • Ans. 

    Steps to resolve tablespace issues and phases of ADOP in application development.

    • Monitor tablespace usage regularly to anticipate issues before they arise.

    • Increase the size of the tablespace by adding data files.

    • Archive or purge old data to free up space.

    • Implement partitioning to manage large tables more effectively.

    • Review and optimize database queries to reduce space consumption.

    • In ADOP, phases include: Prepare, Apply...

  • 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

Technology Analyst Interview Questions & Answers

user image Manas Srivastava

posted on 27 Nov 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. JavaScript basics
  • Q2. Angular authorization, RXJS, Interceptors
Round 2 - HR 

(1 Question)

  • Q1. What are your expectations
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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain about kersal server?
  • Ans. 

    Kersal server is a type of server used for hosting websites and applications.

    • Kersal server is known for its reliability and performance.

    • It is often used by businesses to host their websites and applications.

    • Kersal server offers features like high uptime, security, and scalability.

    • Examples of Kersal server providers include AWS, Google Cloud, and Microsoft Azure.

  • Answered by AI
  • Q2. What is dependency injection?
Round 2 - Behavioral 

(2 Questions)

  • Q1. What architecture are you using in your project?
  • Ans. 

    We are using a microservices architecture in our project.

    • Decomposes the application into smaller, independent services

    • Each service is responsible for a specific function

    • Allows for scalability and flexibility

    • Example: Netflix, Amazon, Uber

  • Answered by AI
  • Q2. Acceptance criteria

Skills evaluated in this interview

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 interview?
Infosys interview process usually has 1-2 rounds. The most common rounds in the Infosys interview process are Technical, HR and Resume Shortlist.
How to prepare for Infosys Technology Analyst 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?

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

  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?

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

  1. What are your strengths and weakness...read more
  2. Why are you looking for a chan...read more
  3. why should we hire y...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 235 interview experiences

Difficulty level

Easy 22%
Moderate 74%
Hard 4%

Duration

Less than 2 weeks 54%
2-4 weeks 31%
4-6 weeks 7%
6-8 weeks 2%
More than 8 weeks 6%
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