Infosys Data Analyst Interview Questions (2026)
30 real Data Analyst interview questions compiled for Infosys, 30 of them tailored to Infosys's actual interview flavor. Analyze data and build dashboards that answer business questions and drive action. Below: the interview process, the questions with answer outlines, the topics tested, and how to prepare.
Infosys hires freshers through its own online assessment (reasoning, verbal, and its signature pseudocode section) and through competitive channels like HackWithInfy and InfyTQ certification, which route strong performers to Power Programmer (Specialist Programmer/SP) and Digital Specialist Engineer (DSE) offers. Interviews are a single technical round followed by HR for standard roles, with harder DSA-centric interv
Questions
30
30 company-tailored
Difficulty
Medium
from our question mix
Rounds
5
typical loop
Infosys rating
3.51/5
Top 100% in IT Services & Consulting
Infosys's interview process
- 1Infosys Online Assessment60 minMedium
Timed test with logical reasoning, verbal ability, quantitative aptitude, and the well-known pseudocode section that decides interview shortlisting and track.
- 2Power Programmer (SP) Coding Round50 minHard
For HackWithInfy/InfyTQ-routed candidates, a competitive-programming style interview with 2-3 DSA problems requiring working code and complexity analysis.
- 3Technical Interview40 minMedium
Panel covers OOP, DBMS and SQL queries, one or two programs or pseudocode on paper/screen, and a walkthrough of academic or work projects.
- 4Techno-Managerial Round40 minMedium
For laterals, a delivery manager probes system-level decisions on past projects, estimation, client communication, and how the candidate handles production issues.
- 5HR Round25 minEasy
Values-and-stability conversation covering why Infosys, C-LIFE values awareness, relocation, training agreement, and salary/joining logistics.
Data Analyst interview questions asked at Infosys
- Q1
Write a SQL query to find duplicate customer records in Infosys's retail client's daily sales dashboard. How would you decide which record survives?
MediumSQL roundduplicate detectionInfosys-specificContext: Infosys retail client's daily sales dashboard
How to answer: Use GROUP BY/HAVING or ROW_NUMBER over a business key, define survivorship rules, and push the fix upstream. State the business question, the data you would pull, and the checks that make the number trustworthy. Walk through the query or steps concretely, naming tables, joins, filters, and edge cases. Close with how you would validate the result and explain it to the stakeholder.
- Q2
Using window functions, how would you add a 7-day rolling total and a rank within category to Infosys's telecom client's churn reporting?
MediumSQL roundwindow functionsInfosys-specificContext: Infosys telecom client's churn reporting
How to answer: Contrast aggregate vs window behavior, frame clauses, and partition choices. State the business question, the data you would pull, and the checks that make the number trustworthy. Walk through the query or steps concretely, naming tables, joins, filters, and edge cases. Close with how you would validate the result and explain it to the stakeholder.
- Q3
For Infosys's insurance client's claims data mart, when would an INNER JOIN silently drop rows a LEFT JOIN would keep? Show the row counts you would check.
MediumSQL roundjoinsInfosys-specificContext: Infosys insurance client's claims data mart
How to answer: Explain join semantics with unmatched keys, and the count-before/count-after habit. State the business question, the data you would pull, and the checks that make the number trustworthy. Walk through the query or steps concretely, naming tables, joins, filters, and edge cases. Close with how you would validate the result and explain it to the stakeholder.
- Q4
Your monthly GROUP BY summary for Infosys's e-commerce client's returns analysis does not match the source system's total. How do you reconcile them?
HardSQL roundaggregation and reconciliationInfosys-specificContext: Infosys e-commerce client's returns analysis
How to answer: Compare grain, filters, timezone/date boundaries, late-arriving rows, and duplicates. State the business question, the data you would pull, and the checks that make the number trustworthy. Walk through the query or steps concretely, naming tables, joins, filters, and edge cases. Close with how you would validate the result and explain it to the stakeholder.
- Q5
Which results change when key columns in Infosys's healthcare client's appointment no-show reporting contain NULLs — filters, joins, COUNT vs COUNT(col), averages?
MediumSQL roundNULL handlingInfosys-specificContext: Infosys healthcare client's appointment no-show reporting
How to answer: Walk NULL semantics through WHERE, JOIN keys, aggregates, and COALESCE defaults. State the business question, the data you would pull, and the checks that make the number trustworthy. Walk through the query or steps concretely, naming tables, joins, filters, and edge cases. Close with how you would validate the result and explain it to the stakeholder.
- Q6
After adding a join, revenue in Infosys's logistics client's delivery SLA tracking doubled. Debug the query and prove the fix.
HardSQL roundjoin fan-out debuggingInfosys-specificContext: Infosys logistics client's delivery SLA tracking
How to answer: Detect one-to-many fan-out, pre-aggregate or dedupe the many side, verify with row counts. State the business question, the data you would pull, and the checks that make the number trustworthy. Walk through the query or steps concretely, naming tables, joins, filters, and edge cases. Close with how you would validate the result and explain it to the stakeholder.
- Q7
When would you restructure a nested-subquery report for Infosys's credit-card client's spend-category dashboard into CTEs, and what does it cost?
MediumSQL roundCTEs and subqueriesInfosys-specificContext: Infosys credit-card client's spend-category dashboard
How to answer: Readability, reuse, debugging layer by layer; note optimizer behavior differences. State the business question, the data you would pull, and the checks that make the number trustworthy. Walk through the query or steps concretely, naming tables, joins, filters, and edge cases. Close with how you would validate the result and explain it to the stakeholder.
- Q8
Find the top 3 products per region by revenue in Infosys's banking client's loan-portfolio reporting, handling ties explicitly.
MediumSQL roundranking problemsInfosys-specificContext: Infosys banking client's loan-portfolio reporting
How to answer: ROW_NUMBER vs RANK vs DENSE_RANK, and which tie behavior the business actually wants. State the business question, the data you would pull, and the checks that make the number trustworthy. Walk through the query or steps concretely, naming tables, joins, filters, and edge cases. Close with how you would validate the result and explain it to the stakeholder.
- Q9
Your XLOOKUP against the master sheet in Infosys's retail client's daily sales dashboard returns #N/A for valid IDs. What do you check?
MediumExcel and BI roundlookupsInfosys-specificContext: Infosys retail client's daily sales dashboard
How to answer: Trailing spaces, number-vs-text types, exact match mode, and TRIM/VALUE cleanup. State the business question, the data you would pull, and the checks that make the number trustworthy. Walk through the query or steps concretely, naming tables, joins, filters, and edge cases. Close with how you would validate the result and explain it to the stakeholder.
- Q10
Build a pivot summary for Infosys's telecom client's churn reporting: what goes in rows, values, and filters, and when does a pivot beat formulas?
MediumExcel and BI roundpivot tablesInfosys-specificContext: Infosys telecom client's churn reporting
How to answer: Structure the source as a flat table, choose aggregations, and know pivot refresh limits. State the business question, the data you would pull, and the checks that make the number trustworthy. Walk through the query or steps concretely, naming tables, joins, filters, and edge cases. Close with how you would validate the result and explain it to the stakeholder.
- Q11
List the cleaning steps you would run on a raw extract for Infosys's insurance client's claims data mart before any analysis.
MediumExcel and BI rounddata cleaning in ExcelInfosys-specificContext: Infosys insurance client's claims data mart
How to answer: Duplicates, blanks, types, date formats, merged cells, and a repeatable order of operations. State the business question, the data you would pull, and the checks that make the number trustworthy. Walk through the query or steps concretely, naming tables, joins, filters, and edge cases. Close with how you would validate the result and explain it to the stakeholder.
- Q12
In Power BI, when does Infosys's e-commerce client's returns analysis need a DAX measure instead of a calculated column?
HardExcel and BI roundDAX measuresInfosys-specificContext: Infosys e-commerce client's returns analysis
How to answer: Row context vs filter context, storage cost, and totals that only measures get right. State the business question, the data you would pull, and the checks that make the number trustworthy. Walk through the query or steps concretely, naming tables, joins, filters, and edge cases. Close with how you would validate the result and explain it to the stakeholder.
- Q13
Design the Power BI model for Infosys's healthcare client's appointment no-show reporting: which tables are facts, which are dimensions, and why not one flat table?
MediumExcel and BI rounddata modelingInfosys-specificContext: Infosys healthcare client's appointment no-show reporting
How to answer: Star schema, relationship directions, and what breaks when everything is one wide table. State the business question, the data you would pull, and the checks that make the number trustworthy. Walk through the query or steps concretely, naming tables, joins, filters, and edge cases. Close with how you would validate the result and explain it to the stakeholder.
- Q14
The client says the Infosys dashboard for logistics client's delivery SLA tracking takes a minute to load. How do you make it fast?
MediumExcel and BI rounddashboard performanceInfosys-specificContext: Infosys logistics client's delivery SLA tracking
How to answer: Reduce cardinality, trim visuals, pre-aggregate, and measure before optimizing. State the business question, the data you would pull, and the checks that make the number trustworthy. Walk through the query or steps concretely, naming tables, joins, filters, and edge cases. Close with how you would validate the result and explain it to the stakeholder.
- Q15
Which KPIs go on the first screen of Infosys's credit-card client's spend-category dashboard, and what do you deliberately leave out?
MediumExcel and BI rounddashboard designInfosys-specificContext: Infosys credit-card client's spend-category dashboard
How to answer: Lead with decisions the client makes weekly; park detail in drill-throughs. State the business question, the data you would pull, and the checks that make the number trustworthy. Walk through the query or steps concretely, naming tables, joins, filters, and edge cases. Close with how you would validate the result and explain it to the stakeholder.
Practice these with instant AI feedback in a live mock interview → Start a Infosys Data Analyst mock
Topics tested most
How to prepare for the Infosys Data Analyst interview
Clear the online test; revise coding fundamentals and projects; prepare HR/behavioral
Indicative Data Analyst pay in India: ~₹6–22 LPA (role-level range, not a Infosys-specific figure).
Frequently asked questions
How hard is the Infosys Data Analyst interview?
Based on our bank of 30 Data Analyst questions asked at Infosys, the overall difficulty is medium (Infosys's process is generally rated standard). Expect around 5 rounds spanning duplicate detection, window functions, joins.
How many interview rounds does Infosys have for a Data Analyst?
Infosys typically runs about 5 rounds for Data Analyst candidates: Infosys Online Assessment → Power Programmer (SP) Coding Round → Technical Interview → Techno-Managerial Round → HR Round.
What is the interview process at Infosys?
The Infosys interview process typically runs: Online assessment (aptitude + coding) -> technical interview -> HR round. Prepare for each round in order rather than only the first — the later stages usually carry the most weight.
How hard is the Infosys interview?
Infosys interviews are rated low-medium difficulty. The bar is highest on aptitude — go deep there and practise explaining your reasoning out loud.
What does Infosys look for in candidates?
Infosys focuses on Aptitude, coding fundamentals, projects, communication. Culturally, it values Client value, leadership by example, integrity, fairness. Line up your examples to hit both the technical bar and these values.
Explore more
Compiled by PrepNPlaced from 30+ interview reports and question banks for the Infosys Data Analyst loop, cross-referenced with 50,429 employee reviews. Data refreshed 2026-08-13. Updated 2026.