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
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Oops concepts,.net framework related qstns and qstns on sql
Round 2 - Technical 

(1 Question)

  • Q1. Behavioral and managerial level qstns
Round 3 - HR 

(1 Question)

  • Q1. Offer discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Coding,etl process,gcp components

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
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java and springboot questions

Interview Questionnaire 

11 Questions

  • Q1. Basics of core Java ?
  • Q2. Collection and collections difference? Collection Interface in depth.
  • Ans. 

    Collection is a group of objects while collections is a framework in Java. Collection interface is used to manipulate groups of objects.

    • Collection is a group of objects while collections is a framework in Java

    • Collection interface is used to manipulate groups of objects

    • Collections framework provides classes like ArrayList, LinkedList, HashSet, etc.

    • Collection interface extends Iterable interface and has methods like add(

  • Answered by AI
  • Q3. Internal working of HashMap?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to retrieve values quickly.

    • HashMap uses an array of buckets to store key-value pairs

    • Each bucket contains a linked list of entries with the same hash code

    • When a key-value pair is added, its hash code is used to determine the bucket and added to the linked list

    • When a value is retrieved, its hash code is used to find the bucket and then the linked li...

  • Answered by AI
  • Q4. What is Multithreading and example of it?
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently.

    • Multithreading improves performance by utilizing idle CPU time.

    • Example: A web server handling multiple requests simultaneously.

    • Multithreading can lead to synchronization issues and race conditions.

    • Thread safety can be achieved through locks and semaphores.

  • Answered by AI
  • Q5. Spring Data JPA in depth
  • Ans. 

    Spring Data JPA is a framework that simplifies the implementation of JPA-based repositories.

    • Spring Data JPA provides a set of interfaces and classes to work with JPA entities and repositories.

    • It supports various query methods and pagination.

    • It also provides support for auditing, caching, and transactions.

    • Example: @Repository interface UserRepository extends JpaRepository {}

  • Answered by AI
  • Q6. Overloading - Overriding explanation.
  • Ans. 

    Overloading is when a class has multiple methods with the same name but different parameters. Overriding is when a subclass provides its own implementation of a method from its superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to change the behavior of a method in a subclass

    • Overloading is resolved at compile-time while overriding is resolved at runtime

    • ...

  • Answered by AI
  • Q7. Spring Boot annotations, why Spring boot. Different dependencies like Lombok.
  • Ans. 

    Spring Boot annotations simplify development and Lombok reduces boilerplate code.

    • Spring Boot annotations provide a streamlined way to configure and run applications.

    • Lombok reduces boilerplate code by generating getters, setters, constructors, and more.

    • Spring Boot and Lombok work well together to create efficient and concise code.

    • Examples of Spring Boot annotations include @SpringBootApplication, @RestController, and @A...

  • Answered by AI
  • Q8. RestAPI in depth, RestController and controller difference.
  • Q9. Microservice basics and example.
  • Q10. Apache Kafka (Streaming API) basic info.
  • Q11. GitHub, Jenkins basic understanding

Skills evaluated in this interview

Infosys interview questions for designations

 Business Technology Analyst

 (10)

 Technology Java Analyst

 (1)

 Technology Architect

 (7)

 Technology Specialist

 (3)

 Technology Consultant

 (3)

 Manager Technology

 (1)

 Technology

 (2)

 Associate Business Analyst - Technology

 (1)

Technology Analyst Interview Questions & Answers

user image Ashna Ashraf

posted on 19 Jun 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Easy to crack and basic levels of questions

Round 2 - Coding Test 

Covers the core concepts of the technology

Interview Preparation Tips

Topics to prepare for Infosys Technology Analyst interview:
  • Technical

Get interview-ready with Top Infosys Interview Questions

Technology Analyst Interview Questions & Answers

user image Ponnangan Rajumayandi

posted on 21 Jun 2022

I applied via Naukri.com and was interviewed in Dec 2021. There were 4 interview rounds.

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

(1 Question)

  • Q1. Basics from android mobile apps and Java with Oops concepts
Round 3 - One-on-one 

(1 Question)

  • Q1. Its about working knowledge in Android applications and its release in play store with different scenarios
Round 4 - HR 

(1 Question)

  • Q1. Its about salary discussions

Interview Preparation Tips

Interview preparation tips for other job seekers - Should be strong in basics of programming and what you are working

Technology Analyst Jobs at Infosys

View all
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between goto and perform
  • Ans. 

    Goto is an unconditional transfer of control while perform is a conditional transfer of control.

    • Goto is considered harmful as it can lead to spaghetti code.

    • Perform is used to execute a set of statements based on a condition.

    • Perform can be used with varying levels of granularity such as perform until, perform varying, etc.

    • Goto is rarely used in modern programming languages.

    • Example: perform until condition is met, goto l

  • Answered by AI
  • Q2. Difference between search and search all
  • Ans. 

    Search is a specific query for a particular item, while search all is a broader search for all items.

    • Search is used to find a specific item or information within a limited scope.

    • Search all is used to find all items or information within a broader scope.

    • Search is more targeted and precise, while search all is more general and comprehensive.

    • For example, searching for a specific product on a website is a search, while sea...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Basic questions by HR Package and shift details

Interview Preparation Tips

Interview preparation tips for other job seekers - Mainframe developers mainly should focus on cobol and jcl

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. All the basics and advance questions about Java
Round 2 - Technical 

(2 Questions)

  • Q1. Explain Agile technolgy
  • Ans. 

    Agile technology is an iterative approach to software development that emphasizes flexibility and collaboration.

    • Agile methodology involves breaking down projects into smaller, more manageable tasks

    • Teams work in short sprints, typically 1-4 weeks, to complete these tasks

    • Agile emphasizes frequent communication and collaboration between team members and stakeholders

    • The goal is to deliver working software quickly and conti...

  • Answered by AI
  • Q2. Explain the CI CD pipelines
  • Ans. 

    CI/CD pipelines are automated processes that allow for continuous integration and delivery of software.

    • CI/CD stands for Continuous Integration/Continuous Delivery

    • CI involves merging code changes into a central repository and running automated tests

    • CD involves deploying the code changes to production

    • Pipelines can be customized to fit the needs of the development team

    • Examples of CI/CD tools include Jenkins, Travis CI, an

  • Answered by AI
Round 3 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics well they will check your basics in depth

Skills evaluated in this interview

I was interviewed before Nov 2021.

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 basic and important concepts related to your technology.
  • Q2. Some questions to check whether the candidate have in depth knowledge of primary skill.
Round 3 - HR 

(3 Questions)

  • Q1. Personality check, communication skill, flexibility of work and location check.
  • Q2. Salary and expectation discussion
  • Q3. Possible joining date discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare all concepts of primary and secondary skills to its depth.
also prepare all basic concepts of other skills in resume.
read and understand job description carefully.
be confidant!

I applied via Company Website and was interviewed in Nov 2021. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. BASICS OF REACTJS QUESTIONS
  • Q2. SOME SCENARIOS WITH EXAMPLES
Round 2 - One-on-one 

(1 Question)

  • Q1. DETAIL TECHNICAL AND PROJECTS HANDLED
Round 3 - HR 

(1 Question)

  • Q1. SALARY DISCUSSION AND JOB LOCATION, OTHER DETAILS

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong in basics and try to answer all the questions

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.6k 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-13.5 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.6k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.6k salaries
unlock blur

₹2.8 L/yr - ₹8 L/yr

System Engineer
39.5k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.7k salaries
unlock blur

₹5.1 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.9k salaries
unlock blur

₹4.5 L/yr - ₹16.8 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