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.
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]
Popular problems to start with
Interview process
- 1Application and screeningApply through your college or the Superset portal. Cognizant's GenC page lists five steps: application, screening, assessments, interviews, results.
- 2Communication assessmentAbout 60 minutes online: listening, repeating audio clips, speaking, grammar and sentence correction.
- 3Aptitude and gamesAbout 80 minutes: 20-30 quantitative and reasoning questions followed by gamified puzzle sections.
- 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.
- 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.
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.
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.
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.
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.
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.
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
- Generation Cognizant (GenC) Program - Cognizant Careers
- Cognizant GenC Salary 2025 for Freshers - PrepInsta
- Cognizant Interview Experience for Gen-Pro (2025 graduate) On-Campus - GeeksforGeeks
- Cognizant GenC Next Hiring Experience (2025-26 Batch) On Campus - GeeksforGeeks
- Cognizant Interview Experience for GenC / GenC Pro / GenC Next 2025 - Off-Campus - GeeksforGeeks
- 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.