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

Filter interviews by

Infosys Technology Analyst Interview Questions, Process, and Tips

Updated 26 Feb 2025

Top Infosys Technology Analyst Interview Questions and Answers

  • Q1. An atomic spark job runs for 15 mins everyday ,one day it is running for more than an hour what might be the issue ?
  • Q2. What is a dataframe and how it differs from dataset ?
  • Q3. 4.How to communicate between two rest API and how to implement security for rest API?
View all 165 questions

Infosys Technology Analyst Interview Experiences

277 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Partitioning in oracle
  • Ans. 

    Partitioning in Oracle allows tables, indexes, and index-organized tables to be subdivided into smaller, more manageable pieces.

    • Partitioning improves query performance by allowing operations to be performed on individual partitions instead of the entire table.

    • Types of partitioning include range, list, hash, and composite partitioning.

    • Example: Creating a range partitioned table based on a date column to store data for e

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why you are switching job?

Skills evaluated in this interview

Technology Analyst Interview Questions & Answers

user image tanvi jangda

posted on 25 Jul 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic dotnet questions

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 mins everyday ,one day it is runn ... 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

Technology Analyst Interview Questions & Answers

user image Jyoti Kaushal

posted on 1 Mar 2024

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

SQL queries on various basic concepts

Round 2 - Technical 

(2 Questions)

  • Q1. What are joins in sql, give 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

  • Answered by AI
  • Q2. What is inheritence in c#
  • Ans. 

    Inheritance in C# allows a class to inherit properties and behavior from another class.

    • Allows a class to reuse code from another class

    • Derived class inherits members from base class

    • Supports single and multiple inheritance through interfaces

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Job Portal

Round 1 - Technical 

(1 Question)

  • Q1. Java, spring boot basics

Infosys interview questions for designations

 Business Technology Analyst

 (10)

 Technology Java Analyst

 (1)

 Technology Architect

 (7)

 Technology Consultant

 (3)

 Technology Specialist

 (3)

 Manager Technology

 (1)

 Technology

 (2)

 Associate Business Analyst - Technology

 (1)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. Basic .net MVC framework questions c# questions and last sql questions
Round 2 - HR 

(1 Question)

  • Q1. Basic salary discussion

Get interview-ready with Top Infosys Interview Questions

Technology Analyst Interview Questions & Answers

user image Ajay Salunkhe

posted on 14 Feb 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. They ask about your past experience and a little bit info about your work and based on that the ask you the questions

Technology Analyst Jobs at Infosys

View all
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Explain What is DBMS?
  • Ans. 

    DBMS stands for Database Management System. It is a software that manages databases, allowing users to store, retrieve, and manipulate data efficiently.

    • DBMS helps in creating, updating, and managing databases.

    • It provides a structured way to store and organize data.

    • DBMS ensures data integrity and security.

    • Examples of DBMS include MySQL, Oracle, and Microsoft SQL Server.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is 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

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • HashMap is part of the Java Collections framework.

    • It uses hashing to store and retrieve elements efficiently.

    • Each key in a HashMap must be unique.

    • Example: HashMap map = new HashMap<>();

  • Answered by AI
  • Q2. What is different aspect of using data structures
  • Ans. 

    Data structures are different in terms of their implementation, efficiency, and usage in solving specific problems.

    • Different data structures have different ways of organizing and storing data, such as arrays, linked lists, trees, and graphs.

    • Each data structure has its own set of operations that can be performed efficiently, such as searching, inserting, deleting, and sorting.

    • Choosing the right data structure is crucial...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepare

Skills evaluated in this interview

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

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. Q1: Java program to filter employee object from the list using streams.
  • Ans. 

    Filter employee objects from a list using Java streams.

    • Use stream() method to convert the list to a stream.

    • Use filter() method to specify the condition for filtering employee objects.

    • Use collect() method to collect the filtered employee objects into a new list.

  • Answered by AI
  • Q2. Q2 Java program to sort the list.
  • Ans. 

    Java program to sort a list of strings

    • Use Collections.sort() method to sort the list of strings

    • Create a list of strings and add elements to it

    • Call Collections.sort() method on the list to sort it

  • Answered by AI

Skills evaluated in this interview

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

Infosys Technology Analyst Interview Process

based on 220 interviews

5 Interview rounds

  • Technical Round
  • HR Round - 1
  • HR Round - 2
  • HR Round - 3
  • Personal Interview1 Round
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Technology Analyst Salary
based on 55.8k salaries
₹3 L/yr - ₹11 L/yr
At par with the average Technology Analyst Salary in India
View more details

Infosys Technology Analyst Reviews and Ratings

based on 4.3k reviews

3.6/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

2.6

Salary

4.3

Job security

3.8

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 4.3k Reviews and Ratings
Technology Analyst

Noida,

Gurgaon / Gurugram

+1

3-5 Yrs

₹ 3-14 LPA

Java Technology Analyst

Bangalore / Bengaluru

3-5 Yrs

₹ 3.8-12 LPA

S2RL Technology Analyst

Ahmedabad

5-8 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
55.8k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.6k salaries
unlock blur

₹2.8 L/yr - ₹9 L/yr

System Engineer
39.5k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.8k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.8k salaries
unlock blur

₹4.5 L/yr - ₹17 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Accenture

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview