Skip to content

Cognizant Placement Papers 2024 - Previous Year Questions & Solutions

Download Cognizant placement papers 2024 PDF with actual online assessment questions, solutions, and exam pattern analysis for GenC, GenC Pro, and GenC Elevate.

Cognizant 2024 Placement Papers - Complete Question Bank

Section titled “Cognizant 2024 Placement Papers - Complete Question Bank”

This page contains actual Cognizant placement papers from 2024 with 50+ questions from Online Assessment including aptitude, technical MCQs, and coding problems.

RoleAptitudeTechnicalCodingTime
GenC25 MCQs10 MCQs1-2 problems90 min
GenC Pro25 MCQs15 MCQs2 problems120 min
GenC Elevate20 MCQs15 MCQs3 problems150 min
A can complete work in 10 days, B in 15 days. They work together for 4 days, then A leaves. How many more days for B to finish?

Solution:

  • LCM(10,15) = 30 units total work
  • A’s efficiency = 3 units/day, B’s efficiency = 2 units/day
  • Combined = 5 units/day
  • Work done in 4 days = 20 units
  • Remaining = 10 units
  • B alone = 10/2 = 5 days
An item is sold at 20% profit. If CP is ₹800, what is SP?

Solution:

  • SP = CP × (1 + Profit%)
  • SP = 800 × 1.20 = ₹960
A number is increased by 20% then decreased by 20%. Net change?

Solution:

  • Let number = 100
  • After 20% increase = 120
  • After 20% decrease = 120 × 0.8 = 96
  • Net change = -4%
If A:B = 2:3 and B:C = 4:5, find A:B:C

Solution:

  • A:B = 2:3 = 8:12
  • B:C = 4:5 = 12:15
  • A:B:C = 8:12:15
A train 100m long crosses a 200m platform in 30 seconds. Find speed.

Solution:

  • Total distance = 100 + 200 = 300m
  • Time = 30 seconds
  • Speed = 300/30 = 10 m/s = 36 km/hr
SI on ₹5000 for 2 years at 8% per annum?

Solution:

  • SI = (P × R × T) / 100
  • SI = (5000 × 8 × 2) / 100 = ₹800
Average of 5 numbers is 20. If one number is removed, average becomes 18. Find removed number.

Solution:

  • Total = 5 × 20 = 100
  • New total = 4 × 18 = 72
  • Removed = 100 - 72 = 28
Milk and water in ratio 4:1. How much water to add to 10L to make ratio 2:3?

Solution:

  • Milk = 8L, Water = 2L
  • Let x liters water added
  • 8/(2+x) = 2/3
  • 24 = 4 + 2x → x = 10 liters
If COMPUTER = RFUVQNPC, how is PRINTER coded?

Solution:

  • Pattern: Reverse order + shift by 1
  • PRINTER → RETNIRP → SFUOJSQ
A is B’s father. C is A’s father. D is C’s father. How is D related to B?

Solution:

  • A = B’s father
  • C = A’s father (B’s grandfather)
  • D = C’s father (B’s great-grandfather)
Find next: 2, 6, 12, 20, 30, ?

Solution:

  • Differences: 4, 6, 8, 10, 12
  • Next = 30 + 12 = 42
All dogs are cats. All cats are rats. Conclusion: All dogs are rats?

Solution: True (follows from both premises)

What is the output? int a=5; printf(“%d”,a++);

Answer: 5 (post-increment prints first, then increments)

Which key uniquely identifies a row?

Answer: Primary Key

What is encapsulation?

Answer: Bundling data and methods that operate on data within a single unit (class)

Query to select all employees with salary > 50000?
SELECT * FROM employees WHERE salary > 50000;
What is deadlock?

Answer: A situation where two or more processes are waiting for each other indefinitely

Difficulty: Easy
Time: 15 minutes

Reverse a given string without using built-in functions.

Input: “hello”
Output: “olleh”

Difficulty: Easy
Time: 15 minutes

Find second largest element in an array.

Input: [12, 35, 1, 10, 34, 1]
Output: 34

Difficulty: Easy
Time: 15 minutes

Check if a number is palindrome.

Input: 121
Output: true

Difficulty: Medium
Time: 20 minutes

Find two numbers in array that add up to target.

Input: nums = [2,7,11,15], target = 9
Output: [0, 1]

Problem 5: Longest Palindromic Substring (GenC Pro)

Section titled “Problem 5: Longest Palindromic Substring (GenC Pro)”

Difficulty: Medium
Time: 25 minutes

Find the longest palindromic substring.

Input: “babad”
Output: “bab” or “aba”

Problem 6: Merge Sorted Arrays (GenC Elevate)

Section titled “Problem 6: Merge Sorted Arrays (GenC Elevate)”

Difficulty: Medium
Time: 20 minutes

Merge two sorted arrays into one sorted array.

Input: [1,3,5], [2,4,6]
Output: [1,2,3,4,5,6]

  1. Role-Based Assessment: Different difficulty levels for GenC, Pro, and Elevate
  2. Aptitude Critical: Strong aptitude performance required for all roles
  3. Time Management: 90-150 minutes based on role - practice speed
  4. Coding Focus: Basic problems for GenC, intermediate for Pro, advanced for Elevate
  5. Technical MCQs: Programming, DBMS, OOPs are key topics
  6. Success Rate: ~30% for GenC, ~20% for Pro, ~15% for Elevate

Common Interview Questions:

  • OOPs concepts (4 pillars)
  • DBMS normalization
  • SQL queries
  • Project discussion
  • Behavioral questions

Practice these 2024 papers to understand the pattern!

Last updated: February 2026