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
3.7

based on 37.2k Reviews

Filter interviews by

Infosys Technical Analyst Interview Questions, Process, and Tips

Updated 2 Jan 2025

Top Infosys Technical Analyst Interview Questions and Answers

  • Q1. What is Angular ? Write a small piece of code in Angular .
  • Q2. given an array where all the elements appears twice except one. Write a code to find that one element
  • Q3. Exception handling? How you are handling in your project?
View all 19 questions

Infosys Technical Analyst Interview Experiences

24 interviews found

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Types of subfiles.
  • Ans. 

    Types of subfiles in technical analysis

    • Single-page subfiles: display a single page of data at a time

    • Multiple-page subfiles: display multiple pages of data at a time

    • Controlled subfiles: allow for user interaction and data manipulation

    • Window subfiles: display data in a separate window

    • Embedded subfiles: display data within a parent file or screen

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. About yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just keep it simple and honest.

I applied via Naukri.com and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions releted to my job profile

Interview Preparation Tips

Interview preparation tips for other job seekers - Naukari platform is the best for job seekers.you should go for premium to get updates about your job requirements.thanks you very much naukari for my placement at Infosys ❤️

Technical Analyst Interview Questions Asked at Other Companies

asked in Coforge
Q1. Write a program to get a employee list whose salary is greater th ... read more
Q2. Optimize the code for job scheduling written in the first round
asked in Coforge
Q3. Explain Security authentication implementation and what are the d ... read more
asked in Coforge
Q4. How did you implemented the microservices in your project, What a ... read more
asked in Coforge
Q5. How did you configure Api gateway to manage your microservices?

Interview Questionnaire 

4 Questions

  • Q1. What is Angular ? Write a small piece of code in Angular .
  • Ans. 

    Angular is a JavaScript framework for building web applications.

    • Developed and maintained by Google

    • Uses TypeScript for building applications

    • Provides a modular approach to building applications

    • Uses directives, components, and services for building UI

    • Example code:

  • Answered by AI
  • Q2. What are OOPS Concepts ?
  • Ans. 

    OOPS Concepts are the fundamental principles of Object-Oriented Programming.

    • Encapsulation - bundling of data and methods that operate on that data

    • Inheritance - ability of a class to inherit properties and methods from a parent class

    • Polymorphism - ability of objects to take on many forms

    • Abstraction - hiding of complex implementation details from the user

    • Example: A car object can have properties like color, model, and me...

  • Answered by AI
  • Q3. What is abstraction and encapsulation ?
  • Ans. 

    Abstraction is hiding unnecessary details while encapsulation is hiding implementation details.

    • Abstraction focuses on what an object does rather than how it does it.

    • Encapsulation is the practice of keeping implementation details hidden from the user.

    • Abstraction and encapsulation work together to create more modular and maintainable code.

    • Example of abstraction: A car's dashboard shows only necessary information like spe...

  • Answered by AI
  • Q4. Write Bubble sort in Java.
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Compare adjacent elements and swap them if they are in the wrong order

    • Repeat this process until the list is sorted

    • Time complexity is O(n^2)

    • Example:

    • int[] arr = {5, 2, 8, 12, 1};

    • for (int i = 0; i < arr.length - 1; i++) {

    • for (int j = 0; j < arr.length - i - 1; j++) ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and crisp while giving interview.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic simple question in oops , mvc and sql
  • Q2. And most of the part question are project work related

Interview Preparation Tips

Interview preparation tips for other job seekers - be strong in basic , you can easily crack it

Infosys interview questions for designations

 Technical Operations Analyst

 (1)

 Technical Lead

 (124)

 Technical Architect

 (5)

 Technical Specialist

 (4)

 Technical Consultant

 (2)

 Technical Test Leader

 (21)

 Associate Technical Consultant

 (3)

 Java Technical Lead

 (2)

I applied via Referral and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is your role in project

Interview Preparation Tips

Interview preparation tips for other job seekers - interview lasted for 1 hour

Get interview-ready with Top Infosys Interview Questions

Interview Questionnaire 

2 Questions

  • Q1. Architecture of SharePoint
  • Ans. 

    SharePoint is a web-based collaboration and document management platform by Microsoft.

    • SharePoint is built on top of ASP.NET and IIS.

    • It uses a three-tier architecture consisting of web, application, and database servers.

    • SharePoint supports various deployment models such as on-premises, cloud, and hybrid.

    • It provides features such as document libraries, lists, workflows, and search capabilities.

    • SharePoint can be customize...

  • Answered by AI
  • Q2. Azure role in SharePoint
  • Ans. 

    Azure provides infrastructure and services for hosting SharePoint in the cloud.

    • Azure provides virtual machines for hosting SharePoint servers

    • Azure also offers services like Azure SQL Database and Azure Active Directory for SharePoint

    • SharePoint can be integrated with other Azure services like Azure Search and Azure Functions

    • Azure provides scalability and flexibility for SharePoint deployments

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Core java opps concept collection internal working hashmap, spring some questions bean life cycle scenerio based question

I applied via Company Website and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Why string is immutable?
  • Ans. 

    String is immutable because it cannot be modified once created.

    • Immutable objects are safer to use in multi-threaded environments.

    • String pool in Java is possible because of immutability.

    • StringBuffer and StringBuilder classes are used for mutable strings.

    • Example: String s = "hello"; s.concat(" world"); // returns a new string, s remains unchanged.

  • Answered by AI
  • Q2. Thread communication?
  • Ans. 

    Thread communication refers to the exchange of data between threads in a multi-threaded program.

    • Threads can communicate through shared memory or message passing.

    • Shared memory involves multiple threads accessing the same memory location.

    • Message passing involves threads sending and receiving messages to/from a message queue.

    • Synchronization mechanisms like locks and semaphores are used to ensure thread safety.

    • Examples of ...

  • Answered by AI
  • Q3. Exception handling? How you are handling in your project?
  • Ans. 

    Exception handling is an important aspect of any project to ensure smooth functioning.

    • We use try-catch blocks to handle exceptions.

    • We log the exceptions to track and fix them.

    • We also use custom exceptions to handle specific errors.

    • We prioritize handling critical exceptions first.

    • We regularly review and update our exception handling approach.

  • Answered by AI
  • Q4. Are you working in agile
  • Q5. Some questions from basic java
  • Q6. Ask me to write simple thread program

Interview Preparation Tips

Interview preparation tips for other job seekers - I have attended Infosys interview for java developer ( 2 year experience)

Skills evaluated in this interview

I applied via Referral and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is abc?
  • Ans. 

    ABC is a term that can have different meanings depending on the context.

    • ABC can refer to the alphabet's first three letters.

    • In business, ABC can stand for Activity-Based Costing.

    • In medicine, ABC can be an acronym for Airway, Breathing, and Circulation.

    • ABC can also be a popular children's song and TV show.

  • Answered by AI
  • Q2. Abc is abc

Interview Preparation Tips

Interview preparation tips for other job seekers - never join if they ask about abc

I applied via Naukri.com and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. JCL Cond condition.
  • Ans. 

    JCL Cond condition is used to specify a condition for executing a job step based on the status of a previous step.

    • Cond is used in JCL to specify a condition for executing a job step based on the status of a previous step.

    • It can be used to check for successful completion, non-zero return codes, or specific abend codes.

    • Examples of Cond codes include COND=(0,NE), which checks for non-zero return codes, and COND=(4,LT), wh

  • Answered by AI
  • Q2. To skip the steps as your wish.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in interview as much as possible.

Infosys Interview FAQs

How many rounds are there in Infosys Technical Analyst interview?
Infosys interview process usually has 1-2 rounds. The most common rounds in the Infosys interview process are Technical, HR and One-on-one Round.
How to prepare for Infosys Technical 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 F5.
What are the top questions asked in Infosys Technical Analyst interview?

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

  1. What is Angular ? Write a small piece of code in Angula...read more
  2. given an array where all the elements appears twice except one. Write a code to...read more
  3. Exception handling? How you are handling in your proje...read more

Tell us how to improve this page.

Infosys Technical Analyst Interview Process

based on 10 interviews in last 1 year

2 Interview rounds

  • Technical Round
  • HR Round
View more

People are getting interviews through

based on 12 Infosys interviews
Job Portal
Referral
Company Website
Recruitment Consultant
50%
25%
17%
8%
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Technical Analyst Salary
based on 2.8k salaries
₹2.8 L/yr - ₹11 L/yr
30% less than the average Technical Analyst Salary in India
View more details

Infosys Technical Analyst Reviews and Ratings

based on 265 reviews

3.8/5

Rating in categories

3.7

Skill development

3.8

Work-Life balance

2.6

Salary & Benefits

4.4

Job Security

3.9

Company culture

2.9

Promotions/Appraisal

3.3

Work Satisfaction

Explore 265 Reviews and Ratings
Technology Analyst
56.3k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
49.7k salaries
unlock blur

₹2.8 L/yr - ₹8 L/yr

System Engineer
39k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.7k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.2k salaries
unlock blur

₹4.3 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.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview