Skip to content
SkillitriX
Cognizant corporate headquarters and recruitment guide

GenC & GenC Next · Aptitude & technical

Cognizant Placement Preparation

Cognizant's fresher hiring runs through GenC, GenC Next, and GenC Pro — an online assessment covering aptitude, verbal, and reasoning for every candidate, with an additional coding round for the Next/Pro tracks, followed by a technical and HR interview that's often a single combined panel.

Last updated 31 August 2026Calibrated for 2026/2027 Hiring

Founded1994
HeadquartersTeaneck, New Jersey, USA
Global Scale340,000+ employees
Target Cohort2026 & 2027 Batches

Cognizant hiring tracks & compensation

3 Active Tracks

Compare CTC packages, selection cutoffs, and track descriptions across all Cognizant campus hiring tiers:

Hiring TrackPackage (CTC)Qualifying Criteria
GenC4.00 – 4.50 LPAAptitude + Basic Technical ScreeningEntry-level software engineering track, broad intake across all registered branches.
GenC Next6.75 – 7.25 LPAClear GenC Aptitude + 2 Coding Problems in dedicated roundAdvanced engineering track focusing on Full-Stack, Java/Python development, and Cloud.
GenC Pro9.00 – 12.00 LPATop tier coding performance + Advanced CS Problem SolvingSpecialized roles in AI/ML, Cyber Security, and Cloud Architecture.

What is the Cognizant placement process?

Cognizant's fresher hiring runs through GenC, GenC Next, and GenC Pro — an online assessment covering aptitude, verbal, and reasoning for every candidate, with an additional coding round for the Next/Pro tracks, followed by a technical and HR interview that's often a single combined panel.

  1. 1

    Online assessment

    Aptitude (quant, verbal, logical reasoning) for all candidates; GenC Next/Pro candidates additionally solve coding problems.

  2. 2

    Coding round

    For Next/Pro tracks — typically one to two programming problems testing DSA fundamentals.

  3. 3

    Technical + HR interview

    A single combined panel round covering programming fundamentals, your projects, and communication/culture-fit questions.

  4. 4

    Offer & document verification

    Final eligibility and document check before the formal offer.

Cognizant exam pattern & sectional timing

2026/2027 Pattern

Detailed breakdown of test modules, duration, number of questions, and sectional cutoffs:

Section / ModuleDurationQuestionsNegative MarkingCutoff Benchmark
Quantitative Ability (GenC)35 mins25 QsNo~65%
Logical Reasoning (GenC)30 mins20 QsNo~70%
Verbal Ability (GenC)20 mins20 QsNo~60%
Coding Assessment (GenC Next/Pro)60 mins2 ProblemsNo100% test cases

Cognizant eligibility criteria

  • B.E./B.Tech, M.E./M.Tech, MCA, or equivalent, in eligible streams as per that drive's notification
  • Minimum 60% (or equivalent CGPA) in Class 10, Class 12, and graduation, with no active backlog at the time of joining
  • Consistent academic performance across semesters is generally expected
  • Career gaps are evaluated case-by-case against the specific notification

Documents required for verification

  • · Photo ID proof
  • · Class 10 and Class 12 mark sheets
  • · Degree mark sheets and provisional/consolidated certificate
  • · Passport-size photographs
  • · Updated resume

Cognizant placement syllabus

SectionTopics
Quantitative AptitudePercentages, ratios, averages · Time & work, time-speed-distance · Simple/compound interest, profit & loss · Data interpretation
Verbal AbilityReading comprehension · Grammar and sentence correction · Vocabulary (synonyms/antonyms)
Logical ReasoningSeries completion, coding-decoding · Puzzles and arrangements · Data sufficiency, syllogisms
Coding (GenC Next/Pro)Arrays, strings, basic data structures · Loops, conditionals, recursion · Time-complexity-aware problem solving

Cognizant sample worked questions

Step-by-Step Solutions

Representative questions from recent recruitment drives with worked explanations:

Quantitative Ability — Profit & LossQuantitative

A shopkeeper marks an article 40% above cost price and allows a discount of 25% on marked price. If he sells it for $840, find the cost price.

$800
$750
$820
$850
View Answer & Detailed Explanation

Answer: $800

Let CP = 100x. Marked Price (MP) = 140x. Selling Price after 25% discount = 140x * 0.75 = 105x. Given SP = $840, so 105x = 840 => x = 8. Hence, Cost Price = 100x = 100 * 8 = $800.

Coding Assessment — String HashingCoding

Find the length of the longest substring without repeating characters in a given string S.

View Answer & Detailed Explanation

Answer: O(n) Sliding Window with Frequency Map / Last Seen Index

Maintain two pointers (left, right) and an array of 256 integers storing the last index of each character. As right advances, if S[right] was seen at index >= left, update left = last_seen[S[right]] + 1. Maximum window size (right - left + 1) across the traversal gives the answer in O(n) time and O(1) extra space.

Cognizant aptitude & coding topics

Aptitude topics

  • Percentages, ratios & time-work
  • Time, speed & distance
  • Logical reasoning & puzzles
  • Data interpretation

Coding topics

  • Arrays and string handling
  • Basic data structures (stacks, queues, linked lists)
  • Recursion and simple searching/sorting
  • Time and space complexity reasoning

Cognizant technical interview

Programming fundamentals

Expect questions on OOPs concepts, basic data structures, and simple problem-solving on a whiteboard or shared editor.

Projects & academics

Interviewers ask you to explain your final-year or major academic project in your own words, including choices you made and problems you hit.

SQL & databases

Basic SQL query writing and normalization concepts are common for candidates from CS/IT backgrounds.

Cognizant HR interview questions

Tell me about yourself.

Structure it as education → one strong project or skill → why Cognizant, in under two minutes.

Why should we hire you?

Pick one or two concrete strengths backed by an example rather than a list of adjectives.

Are you open to relocation and rotational shifts?

Answer honestly — Cognizant projects frequently involve relocation across delivery centers.

How to prepare for Cognizant placements

Preparation tips

  • Practice full-length timed aptitude sets — the sectional format rewards consistent pacing over brilliance on a few questions.
  • If targeting GenC Next/Pro, build fluency with arrays, strings, and basic data structures before test day.
  • Prepare a 90-second walkthrough of your main project that you can deliver without notes.
  • Brush up on basic SQL — it comes up often for CS/IT candidates even outside a dedicated DBMS round.

Common mistakes

  • Assuming the coding round only applies to 'coding roles' and skipping DSA prep entirely.
  • Memorizing HR answers word-for-word instead of practicing them conversationally.
  • Not reviewing your own final-year project before the interview.
  • Ignoring verbal ability prep because English 'seems easy' — it still carries a sectional cutoff.

Frequently asked questions about Cognizant placements

What is the Cognizant placement process?+

An online aptitude assessment for every candidate, an additional coding round for the GenC Next/Pro tracks, and a combined technical + HR interview before the offer.

What is the difference between GenC, GenC Next, and GenC Pro?+

GenC is the standard entry-level track evaluated mainly on aptitude; GenC Next and GenC Pro carry higher packages and require clearing an additional coding round focused on data structures and problem solving.

What aptitude topics does Cognizant test?+

Quantitative aptitude (percentages, time & work, time-speed-distance), verbal ability, and logical reasoning, each with its own sectional weight.

How should I prepare for a Cognizant interview?+

Revise OOPs and basic data structures, be ready to explain your major academic project end-to-end, and practice concise answers to standard HR questions about relocation and career goals.

Student taking an MNC placement assessment test

Placement Prep Benchmark

Don’t wait for the real test to find your weak spots.

Take a company-style assessment, see where you stand, and get a personalized AI-powered study plan to improve before test day.

Free diagnostic test includedNo credit card required75,000+ tests scored