C

Cognizant

Service· Updated

Cognizant hires freshers through its GenC program: an online application, a communication assessment, an aptitude test with game-based puzzles, a technical assessment (coding plus SQL) and a technical-cum-HR interview. Performance decides the track (GenC Pro also needs a recognised certification), reported from ₹4 LPA for GenC to ₹6.75 LPA for GenC Next.

GenC, GenC Elevate, GenC Pro and GenC Next fresher tracks
Roles hiring
₹4–6.75 LPA
Typical fresher pay

Who can apply

  • Full-time BE/BTech, ME/MTech, MCA or MS (Software Engineering)
  • 60% throughout academics and no backlogs at selection (reported)
  • Education gap of not more than 1 year (reported)
  • Open to students from all colleges; no service bond (official)

Key facts

GenC CTC
₹4 LPA (reported) [source]
GenC Pro CTC
₹5.4 LPA (reported); needs a recognised certification such as Salesforce, cybersecurity or ServiceNow [source]
GenC Next CTC
₹6.75 LPA (reported) [source]
GenC Elevate CTC
₹4–5.4 LPA (reported; sources disagree) [source]
Service bond
None, per Cognizant's official GenC page [source]

Interview process

  1. 1Application and screeningApply through your college or the Superset portal. Cognizant's GenC page lists five steps: application, screening, assessments, interviews, results.
  2. 2Communication assessmentAbout 60 minutes online: listening, repeating audio clips, speaking, grammar and sentence correction.
  3. 3Aptitude and gamesAbout 80 minutes: 20-30 quantitative and reasoning questions followed by gamified puzzle sections.
  4. 4Technical assessmentReported: 2 coding questions and 2 SQL queries, plus a web (HTML/CSS/JS) task or Java MCQs depending on the track and drive.
  5. 5Technical + HR interviewOOP, Java or Python, SQL, a small coding task, projects, relocation and night-shift flexibility. GenC Next candidates may face a second technical interview.

Questions to expect in Cognizant interviews

Drawn from reported fresher tests and interviews (sources below), with short answers. Practise more on placd.

Coding

Find the common elements between two arrays.

Put the first array into a hash set, then scan the second and output each element found in the set, removing it after output so duplicates are not repeated. O(n + m) time, O(n) space. If both arrays are sorted, two pointers give O(n + m) time with O(1) extra space.

Coding

Find the letter that appears twice in a string.

Scan left to right with a seen set (or a boolean[26] for lowercase letters); the first character already in the set is the answer. O(n) time and O(1) space for a fixed alphabet. If all repeated letters are wanted, build a frequency count instead.

Coding

Print the frequency of each character in a string.

Make one pass incrementing counts in an int[256] array or a LinkedHashMap<Character, Integer>, then print each character with its count. The LinkedHashMap keeps first-appearance order. O(n) time, O(k) space for k distinct characters.

Coding

Find the square root of a number using binary search.

For floor(sqrt(n)): lo = 0, hi = n; while lo <= hi, mid = lo + (hi - lo) / 2; if mid * mid <= n, record ans = mid and set lo = mid + 1, else hi = mid - 1. Compute mid * mid in a long to avoid overflow. O(log n) time, O(1) space.

SQL

What is the difference between DELETE, DROP and TRUNCATE?

DELETE is DML: it removes chosen rows (WHERE allowed), fires row triggers and can be rolled back. TRUNCATE is DDL: it removes all rows quickly, keeps the table structure, takes no WHERE and auto-commits in MySQL/Oracle. DROP removes the whole table - structure, data and indexes.

SQL

Write a query to get the employee with the highest salary.

SELECT * FROM Employee WHERE salary = (SELECT MAX(salary) FROM Employee); This returns every employee tied at the top salary. ORDER BY salary DESC LIMIT 1 also works in MySQL but returns only one row when there is a tie.

About Cognizant hiring

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

They are fresher tracks that share the early rounds. Reported CTCs: GenC ₹4 LPA, GenC Pro ₹5.4 LPA (needs a recognised certification such as Salesforce or cybersecurity) and GenC Next ₹6.75 LPA for stronger coding and interview performance.

How much does Cognizant GenC Elevate pay?

Reports disagree. PrepInsta lists ₹4 LPA plus a skill bonus, totalling ₹5.4 LPA, while placementpreparation.io lists ₹4.0–4.3 LPA. Treat your offer letter as the final figure.

Does Cognizant GenC have a service bond?

No. Cognizant's official GenC page says there are no service bonds. It also says hiring is open to students from all colleges and that high performers can fast-track to advanced roles through its Digital Honors Program.

Sources

  1. Generation Cognizant (GenC) Program - Cognizant Careers
  2. Cognizant GenC Salary 2025 for Freshers - PrepInsta
  3. Cognizant Interview Experience for Gen-Pro (2025 graduate) On-Campus - GeeksforGeeks
  4. Cognizant GenC Next Hiring Experience (2025-26 Batch) On Campus - GeeksforGeeks
  5. Cognizant Interview Experience for GenC / GenC Pro / GenC Next 2025 - Off-Campus - GeeksforGeeks
  6. Cognizant GenC Salary & Job Profiles - placementpreparation.io

Checked on 25 Sep 2026. Recruitment rules change each cycle — confirm dates and eligibility in the official notification.

24,000+ questions & coding problemsSoftware & IT16,274 questionsGovernment jobs26 examsAptitudenew questions every timeAI practice interviewwith feedback65 topics to practiseMechanical1,149 questionsGATE ME9 papersEngineering Mathematics381 questions2-minute checkfreeDSA Problems1,422Civil1,005 questionsGATE CE9 papersCS Fundamentals1,209 questionsYour scores6 skillsSystem Design25Electrical / EEE1,047 questionsGATE EE9 papersRun your codeC++ · Java · PythonLow-Level Design144Electronics & Comm.975 questionsGATE EC9 papersAI help on every questionFull-Stack6,282Chemical1,005 questionsGATE CH9 papersAI whiteboardsystem designWork abroadEurope · remote · transfersESE ME1 paperGATE practice papers2019–2026ESE CE1 paperDate alertsbefore the last dateESE EE1 paperBehavioural courseHR round practiceESE ET1 paperResume optimizerSSC JE ME1 paperApplication trackerSSC JE CE1 paperCompany-wise prepSSC JE EE1 paperRole roadmapsRRB JE1 subjectPriced in ₹UPI · cardsISRO SC1 paperGATE CS9 papersIBPS SO IT1 paperUGC NET CS1 paperSSC CGL26 papersIBPS PO26 papersRRB NTPC26 papersSSC CHSL26 papersIBPS Clerk26 papersSBI Clerk26 papersRRB Group D26 papersSSC CPO26 papersSSC GD26 papers