Cognizant Data Analyst Interview Questions (2026)
30 real Data Analyst interview questions compiled for Cognizant, 30 of them tailored to Cognizant'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.
Cognizant India hires freshers through the branded GenC tracks — GenC, GenC Elevate, GenC Pro, and GenC Next — where the online assessment tier (aptitude-only up to hard coding for GenC Next) determines the package, followed by a combined technical+HR GenC interview. Laterals interview by domain (healthcare/TriZetto, insurance/Guidewire, banking, digital) with technical, managerial, and HR rounds.
Questions
30
30 company-tailored
Difficulty
Medium
from our question mix
Rounds
6
typical loop
Cognizant rating
3.66/5
Top 99% in IT Services & Consulting
Cognizant's interview process
- 1GenC Online Assessment60 minMedium
Aptitude, verbal, and basic technical MCQs; higher tiers (Elevate/Next) add progressively harder coding sections.
- 2GenC Next Coding Assessment60 minHard
2-3 coding problems plus SQL/full-stack questions that gate the top fresher package.
- 3GenC Technical + HR Interview45 minMedium
Combined panel covers projects, programming fundamentals, and HR questions on flexibility and joining in one sitting.
- 4Technical Interview (Lateral)45 minMedium
Skill/vertical depth: Java/.NET/cloud scenarios, or domain platforms like Facets/Guidewire for healthcare and insurance roles.
- 5Managerial Round40 minMedium
Delivery manager tests estimation, client escalation handling, and team leadership for experienced hires.
- 6HR Discussion30 minEasy
Compensation, location/shift preferences, notice-period negotiation, and documentation.
Data Analyst interview questions asked at Cognizant
- Q1
Write a SQL query to find duplicate customer records in Cognizant's insurance client's claims data mart. How would you decide which record survives?
MediumSQL roundduplicate detectionCognizant-specificContext: Cognizant insurance client's claims data mart
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 Cognizant's e-commerce client's returns analysis?
MediumSQL roundwindow functionsCognizant-specificContext: Cognizant e-commerce client's returns analysis
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 Cognizant's healthcare client's appointment no-show reporting, when would an INNER JOIN silently drop rows a LEFT JOIN would keep? Show the row counts you would check.
MediumSQL roundjoinsCognizant-specificContext: Cognizant healthcare client's appointment no-show reporting
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 Cognizant's logistics client's delivery SLA tracking does not match the source system's total. How do you reconcile them?
HardSQL roundaggregation and reconciliationCognizant-specificContext: Cognizant logistics client's delivery SLA tracking
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 Cognizant's credit-card client's spend-category dashboard contain NULLs — filters, joins, COUNT vs COUNT(col), averages?
MediumSQL roundNULL handlingCognizant-specificContext: Cognizant credit-card client's spend-category dashboard
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 Cognizant's banking client's loan-portfolio reporting doubled. Debug the query and prove the fix.
HardSQL roundjoin fan-out debuggingCognizant-specificContext: Cognizant banking client's loan-portfolio reporting
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 Cognizant's retail client's daily sales dashboard into CTEs, and what does it cost?
MediumSQL roundCTEs and subqueriesCognizant-specificContext: Cognizant retail client's daily sales 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 Cognizant's telecom client's churn reporting, handling ties explicitly.
MediumSQL roundranking problemsCognizant-specificContext: Cognizant telecom client's churn 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 Cognizant's insurance client's claims data mart returns #N/A for valid IDs. What do you check?
MediumExcel and BI roundlookupsCognizant-specificContext: Cognizant insurance client's claims data mart
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 Cognizant's e-commerce client's returns analysis: what goes in rows, values, and filters, and when does a pivot beat formulas?
MediumExcel and BI roundpivot tablesCognizant-specificContext: Cognizant e-commerce client's returns analysis
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 Cognizant's healthcare client's appointment no-show reporting before any analysis.
MediumExcel and BI rounddata cleaning in ExcelCognizant-specificContext: Cognizant healthcare client's appointment no-show reporting
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 Cognizant's logistics client's delivery SLA tracking need a DAX measure instead of a calculated column?
HardExcel and BI roundDAX measuresCognizant-specificContext: Cognizant logistics client's delivery SLA tracking
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 Cognizant's credit-card client's spend-category dashboard: which tables are facts, which are dimensions, and why not one flat table?
MediumExcel and BI rounddata modelingCognizant-specificContext: Cognizant credit-card client's spend-category dashboard
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 Cognizant dashboard for banking client's loan-portfolio reporting takes a minute to load. How do you make it fast?
MediumExcel and BI rounddashboard performanceCognizant-specificContext: Cognizant banking client's loan-portfolio reporting
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 Cognizant's retail client's daily sales dashboard, and what do you deliberately leave out?
MediumExcel and BI rounddashboard designCognizant-specificContext: Cognizant retail client's daily sales 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 Cognizant Data Analyst mock
Topics tested most
How to prepare for the Cognizant Data Analyst interview
Clear the aptitude and coding test; revise programming and SQL; prepare project and HR questions
Indicative Data Analyst pay in India: ~₹6–22 LPA (role-level range, not a Cognizant-specific figure).
Frequently asked questions
How hard is the Cognizant Data Analyst interview?
Based on our bank of 30 Data Analyst questions asked at Cognizant, the overall difficulty is medium (Cognizant's process is generally rated standard). Expect around 6 rounds spanning duplicate detection, window functions, joins.
How many interview rounds does Cognizant have for a Data Analyst?
Cognizant typically runs about 6 rounds for Data Analyst candidates: GenC Online Assessment → GenC Next Coding Assessment → GenC Technical + HR Interview → Technical Interview (Lateral) → Managerial Round.
What is the interview process at Cognizant?
The Cognizant interview process typically runs: Aptitude & coding test -> technical interview -> managerial & 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 Cognizant interview?
Cognizant interviews are rated low-medium difficulty. The bar is highest on aptitude — go deep there and practise explaining your reasoning out loud.
What does Cognizant look for in candidates?
Cognizant focuses on Aptitude, programming fundamentals, SQL, communication. Culturally, it values Customer focus, collaboration, integrity, continuous improvement. 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 Cognizant Data Analyst loop, cross-referenced with 63,358 employee reviews. Data refreshed 2026-08-14. Updated 2026.