Skip to content

Cognizant Placement Papers 2025 - Latest Questions & Solutions

Cognizant placement papers 2025 with latest online assessment questions for GenC, GenC Pro, and GenC Elevate with solutions and pattern analysis.

Cognizant 2025 Placement Papers - Latest Questions

Section titled “Cognizant 2025 Placement Papers - Latest Questions”

This page contains actual Cognizant placement papers from 2025 with latest questions from Online Assessment for all roles.

RoleAptitudeTechnicalCodingTimeCTC
GenC25 MCQs10 MCQs1-290 min4 LPA
GenC Pro25 MCQs15 MCQs2120 min6 LPA
GenC Elevate20 MCQs15 MCQs3150 min9 LPA
₹10,000 at 10% CI for 2 years. Find difference from SI.

Solution:

  • CI = P(1+r)^n - P = 10000(1.1)² - 10000 = 2100
  • SI = P×r×n = 10000×0.1×2 = 2000
  • Difference = ₹100
A invests 5000 for 6 months, B invests 6000 for 4 months. Profit ratio?

Solution:

  • A’s investment × time = 5000 × 6 = 30000
  • B’s investment × time = 6000 × 4 = 24000
  • Ratio = 30000:24000 = 5:4
Two dice thrown. Probability of sum = 7?

Solution:

  • Favorable: (1,6), (2,5), (3,4), (4,3), (5,2), (6,1) = 6
  • Total outcomes = 36
  • P = 6/36 = 1/6
Pipe A fills in 20 min, B empties in 30 min. How long if both open?

Solution:

  • A’s rate = 1/20, B’s rate = -1/30
  • Combined = 1/20 - 1/30 = 1/60
  • Time = 60 minutes
Find next: 1, 1, 2, 3, 5, 8, 13, ?

Answer: 21 (Fibonacci series)

A walks 10m North, turns right walks 5m, turns right walks 10m. Direction from start?

Answer: East (5m east of starting point)

5 people in a row: A is left of B, C is right of D, E is between B and D. Order?

Answer: A-B-E-D-C or similar valid arrangement

Is x > y? (I) x² > y² (II) x > 0

Answer: Both statements together are needed - C

Which concept achieves runtime polymorphism?

Answer: Method overriding (decided at runtime)

ACID stands for?

Answer: Atomicity, Consistency, Isolation, Durability

Which layer provides end-to-end delivery in OSI?

Answer: Transport Layer (Layer 4)

Time complexity of binary search?

Answer: O(log n)

Print 1 to n. For multiples of 3 print “Fizz”, for 5 print “Buzz”, for both print “FizzBuzz”.

Problem 2: Remove Duplicates from Sorted Array (GenC Pro)

Section titled “Problem 2: Remove Duplicates from Sorted Array (GenC Pro)”

Remove duplicates in-place from sorted array. Return new length.

Input: [1,1,2,2,3]
Output: 3 (array becomes [1,2,3,…])

Check if brackets are valid.

Input: ”()[]“
Output: true

Problem 4: Maximum Subarray Sum (GenC Elevate)

Section titled “Problem 4: Maximum Subarray Sum (GenC Elevate)”

Find contiguous subarray with maximum sum (Kadane’s algorithm).

Input: [-2,1,-3,4,-1,2,1,-5,4]
Output: 6 (subarray [4,-1,2,1])

Design LRU cache with get and put operations in O(1).

  1. Partial Marking: Coding now has partial marks - solve test cases partially
  2. AI/ML Questions: GenC Elevate includes basic AI/ML concepts
  3. Sectional Cutoffs: Each section has minimum cutoff
  4. Time Pressure: Practice completing tests in allocated time
  5. Technical Depth: More focus on DSA for higher roles

Practice 2025 papers for latest pattern!

Last updated: February 2026