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 23 Jun 2025

175 Interview questions

A Technology Analyst was asked
Q. How do you configure a firewall?
Ans. 

Configuring a firewall involves setting up rules to control incoming and outgoing network traffic.

  • Access the firewall settings through the control panel or security software.

  • Create rules to allow or block specific ports, IP addresses, or applications.

  • Regularly update firewall software to protect against new threats.

  • Test the firewall configuration to ensure it is working as intended.

A Technology Analyst was asked
Q. What are extension methods in MVC?
Ans. 

Extension methods in MVC are static methods that allow adding new methods to existing types without modifying the original type.

  • Extension methods are defined as static methods in a static class.

  • They are used to extend the functionality of existing classes without modifying them.

  • Extension methods are called like regular instance methods.

  • Example: public static class StringExtensions { public static bool IsUpperCase(...

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
Q. What is the folder structure of MVC?
Ans. 

MVC folder structure includes Models, Views, and Controllers folders.

  • Models folder for data-related logic

  • Views folder for UI-related files

  • Controllers folder for handling user input and interaction

🔥 Asked by recruiter 3 times
A Technology Analyst was asked
Q. What is OOPS in Java?
Ans. 

Object-oriented programming concepts in Java

  • Oops stands for Object-Oriented Programming

  • It includes concepts like classes, objects, inheritance, polymorphism, encapsulation

  • Helps in organizing code, making it more modular and reusable

  • Example: creating a class 'Car' with properties like 'make', 'model' and methods like 'drive', 'stop'

A Technology Analyst was asked
Q. What is the difference between async/await and Promises?
Ans. 

Async await is syntactic sugar for promises, making asynchronous code easier to read and write.

  • Async await allows writing asynchronous code that looks synchronous, making it easier to understand.

  • Promises are objects that represent the eventual completion or failure of an asynchronous operation.

  • Async await is built on top of promises and provides a more concise and readable way to work with asynchronous code.

  • Async ...

🔥 Asked by recruiter 2 times
A Technology Analyst was asked
Q. Explain the Event Loop.
Ans. 

Event Loop is a mechanism in programming that allows for asynchronous execution of code by continuously checking for and executing tasks in a queue.

  • Event Loop is a key component of JavaScript's runtime environment.

  • It allows for non-blocking I/O operations, making it possible to handle multiple tasks simultaneously.

  • Tasks are added to the event queue and executed in the order they were added.

  • Event Loop ensures that ...

A Technology Analyst was asked
Q. Explain callback hell.
Ans. 

Callback hell is a situation in asynchronous programming where multiple nested callbacks make the code difficult to read and maintain.

  • Occurs when multiple asynchronous operations are nested within each other

  • Can lead to deeply nested code structure which is hard to understand

  • Can be mitigated by using promises, async/await, or libraries like async.js

Are these interview questions helpful?
A Technology Analyst was asked
Q. Can you provide an example of a self-join?
Ans. 

A self join is when a table is joined with itself to compare rows within the same table.

  • Self join is used to compare rows within the same table.

  • It is useful when you want to compare data in the same table.

  • You need to use table aliases to distinguish between the two instances of the same table.

A Technology Analyst was asked
Q. Explain what an interface is and how it is used.
Ans. 

An interface is a point of interaction between components, allowing them to communicate and interact with each other.

  • Interfaces define a set of methods that a class must implement.

  • They provide a way to achieve abstraction and multiple inheritance in programming.

  • Interfaces are used to establish communication between different software components.

  • Examples include Java interfaces, which define a contract that impleme...

A Technology Analyst was asked
Q. What are joins in SQL? Give an example.
Ans. 

Joins in SQL are used to combine rows from two or more tables based on a related column between them.

  • Joins are used to retrieve data from multiple tables based on a related column

  • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

  • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

Infosys Technology Analyst Interview Experiences

286 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
  • 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 done implicitly by the compiler when a value type is assigned to a reference type variable.

    • Unboxing requires an explicit cast from the reference type to the value type.

    • Boxing and unboxing can impact performance as they involve memory allocation and copying of data.

    • ...

  • Answered by AI
  • Q2. What is garbage collection
  • Ans. 

    Garbage collection is a process in programming where the system automatically reclaims memory occupied by objects that are no longer in use.

    • Garbage collection helps prevent memory leaks by automatically freeing up memory that is no longer needed.

    • It is commonly used in languages like Java, C#, and Python.

    • Garbage collection can be either automatic or manual, with automatic being the most common approach.

    • Examples of garba...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is mvc and razor
  • Ans. 

    MVC stands for Model-View-Controller, a software architectural pattern. Razor is a markup syntax used in ASP.NET MVC.

    • MVC is a design pattern that separates an application into three main components: Model, View, and Controller

    • Razor is a markup syntax used in ASP.NET MVC to create dynamic web pages

    • MVC helps in organizing code and separating concerns, making it easier to maintain and test applications

  • Answered by AI
  • Q2. What is software development
  • Ans. 

    Software development is the process of creating, designing, testing, and maintaining software applications.

    • Involves writing code to create software applications

    • Includes designing the user interface and user experience

    • Testing the software for bugs and errors

    • Maintaining and updating the software as needed

  • Answered by AI
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

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
  • Ans. 

    I expect a challenging role that fosters growth, collaboration, and innovation in technology analysis.

    • Opportunities for professional development, such as training programs or workshops.

    • A collaborative work environment where team members share ideas and insights.

    • Involvement in innovative projects that push the boundaries of technology.

    • Clear communication from leadership regarding company goals and expectations.

    • A culture...

  • 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
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?
  • 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.

  • Answered by AI
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

Technology Analyst Interview Questions & Answers

user image shailaja ranga

posted on 2 Oct 2024

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

(2 Questions)

  • Q1. Difference between overloading and overriding?
  • Ans. 

    Overloading is having multiple methods in the same class with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading involves multiple methods with the same name but different parameters.

    • Overriding involves a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is resolved...

  • Answered by AI
  • Q2. How to implement MVC architecure?
  • Ans. 

    MVC architecture is implemented by separating the application into Model, View, and Controller components.

    • Create models to represent data and business logic

    • Develop views to display the user interface

    • Write controllers to handle user input and update the model

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview

Skills evaluated in this interview

What people are saying about Infosys

View All
schedule2
Verified Icon
3d
works at
Cognizant
Salary expectation
I have 5+ years of experience in springboot microservices, currently working in CTS and having 10L CTC , wanted to switch in Infosys or Accenture like companies, how much should I ask for 15L-18L ? Just worried if I ask more they can reject my application, please help me with some numbers
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. Why are you looking for a chan...read more
  2. What are your strengths and weakness...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 230 interview experiences

Difficulty level

Easy 23%
Moderate 73%
Hard 4%

Duration

Less than 2 weeks 55%
2-4 weeks 30%
4-6 weeks 7%
6-8 weeks 3%
More than 8 weeks 6%
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Technology Analyst Salary
based on 54.8k salaries
₹3 L/yr - ₹11.5 L/yr
At par with the average Technology Analyst Salary in India
View more details

Infosys Technology Analyst Reviews and Ratings

based on 4.6k 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.6k Reviews and Ratings
Technology Analyst
54.8k salaries
unlock blur

₹3 L/yr - ₹11.5 L/yr

Senior Systems Engineer
53.7k salaries
unlock blur

₹2.5 L/yr - ₹8.1 L/yr

Technical Lead
35k salaries
unlock blur

₹7.3 L/yr - ₹20 L/yr

System Engineer
32.5k salaries
unlock blur

₹2.4 L/yr - ₹5.3 L/yr

Senior Associate Consultant
31k salaries
unlock blur

₹6.3 L/yr - ₹16.9 L/yr

Explore more salaries
Compare Infosys with

TCS

3.6
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.8
Compare
write
Share an Interview