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

Round 1 - Technical 

(1 Question)

  • Q1. Some basic mainframe questions and some of the scenario base which I have work

Interview Preparation Tips

Interview preparation tips for other job seekers - There is only one technical round.
The most of the question is scenario base which you have work in current organization

I applied via Referral and was interviewed in Apr 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1.What is WebAPI? 2.How to use PostMan tool. 3.How to delete duplicate record using SQL 4.AJAX 5.What is LINQ , EF? 6.Difference between MVC and WebAPI 7.Difference between WCF and WebAPI 8.Difference betw...
  • Ans. 

    Interview questions for Technology Analyst role

    • WebAPI is a framework for building HTTP services that can be consumed by a wide range of clients

    • Postman is a tool used for testing APIs by sending HTTP requests and receiving responses

    • To delete duplicate records in SQL, use the DELETE statement with a subquery that identifies the duplicates

    • AJAX is a technique for creating asynchronous web applications that update parts of ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all the point which you have mentioned in Resume. If you dont have an idea for a question. Please tell you are not aware and move on to next question

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Sep 2021. There were 2 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. What is the difference between include and require in php?
  • Ans. 

    Include and require are both used to include external files in PHP, but require will cause a fatal error if the file is not found.

    • Include will only produce a warning if the file is not found, while require will stop the script execution.

    • Include is used when the file is not critical for the script to run, while require is used when the file is essential.

    • Example: include 'header.php'; require 'config.php';

  • Answered by AI
  • Q2. What is array push?
  • Ans. 

    Array push is a method in JavaScript used to add one or more elements to the end of an array.

    • Array push is a built-in method in JavaScript.

    • It adds one or more elements to the end of an array and returns the new length of the array.

    • Example: let arr = ['apple', 'banana']; arr.push('orange'); // arr is now ['apple', 'banana', 'orange']

  • Answered by AI
  • Q3. Interface and Abstract
  • Q4. What is Polymorphism?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to represent multiple data types.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q5. How to get input value from html without using document.getElementById and $(#id).val() using Javascript?

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Phone Interview 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why you are interested to work at Infosys
Round 2 - Technical 

(2 Questions)

  • Q1. All Related to .Net
  • Q2. All Related to C#

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic phone 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)

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

I applied via Company Website and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Networking basics

Get interview-ready with Top Infosys Interview Questions

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Map implementation
Round 2 - HR 

(1 Question)

  • Q1. Salary expectations

Technology Analyst Jobs at Infosys

View all
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Introduction, Error handling
Round 2 - HR 

(1 Question)

  • Q1. Salary package discussion
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2022. 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 

(3 Questions)

  • Q1. Recent Projects work
  • Q2. How to write the code in Lambda for EC2 Provisioning.
  • Ans. 

    Use AWS Lambda to automate EC2 provisioning by writing code in Python or Node.js.

    • Create a Lambda function in AWS console.

    • Write code in Python or Node.js to describe the EC2 instance to be provisioned.

    • Use AWS SDK to interact with EC2 API for provisioning.

    • Handle error cases and cleanup resources after provisioning.

    • Test the Lambda function to ensure it provisions EC2 instances correctly.

  • Answered by AI
  • Q3. Write a template to create the Cloud formation stacks.
  • Ans. 

    Template for creating CloudFormation stacks

    • Define the resources to be created in the stack

    • Specify the properties for each resource

    • Set up dependencies between resources

    • Include any parameters or conditions needed for the stack

    • Use AWS CloudFormation Designer or AWS CLI to create the stack

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Recent Projects work.
Round 4 - HR 

(1 Question)

  • Q1. General discussion about the personal things.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your technology and work.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Java questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Feb 2023.

Round 1 - One-on-one 

(1 Question)

  • Q1. Asked about abstraction and interfaces
Round 2 - HR 

(1 Question)

  • Q1. Discussed about salary expectations

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