Aptitude
Publicis Sapient placement papers 2024
Overview
Section titled “Overview”Publicis Sapient placement papers 2024. Primary filter: Publicis Sapient Assessment. Focus: Coding, case thinking, communication.
Publicis Sapient Aptitude Mock Quiz
Timed placement-style MCQs with score and explanations after you submit. Use it to check speed and accuracy before the real test.
Reasoning
How many 9s are there between 1 and 100?
9,19,29,39,49,59,69,79,89,90–99 → 20 nines.
Reasoning
Find the next number: 11, 13, 17, 19, 23, ?
Prime numbers → 29.
Quantitative
The ratio of the ages of two persons is 4:3. After 6 years, the ratio becomes 9:7. What are their present ages?
Let present ages be 4x and 3x After 6 years: (4x + 6)/(3x + 6) = 9/7 7(4x + 6) = 9(3x + 6) 28x + 42 = 27x + 54 x = 12 Present ages: 4×12 = 48 years, 3×12 = 36 years
Reasoning
Statements: 1. Some cats are dogs, 2. All dogs are animals, 3. No animal is a bird
From statements 1 and 2: Some cats are animals (I follows) From statements 2 and 3: No dog is a bird (II follows) From I: Some animals are cats (III follows)
Quantitative
A number is first increased by 25% and then decreased by 20%. Find the net percentage change.
Let number = 100 After 25% increase: 100 + 25 = 125 After 20% decrease: 125 - 20% of 125 = 125 - 25 = 100 Net change = 0%
Reasoning
If South-East becomes North, North-East becomes West, then what does West become?
Directions rotate 135° anticlockwise; West → South-East.
Verbal
If the cost price of 20 articles is equal to the selling price of 15 articles, find the profit percentage.
Let CP of 1 article = ₹1 CP of 20 articles = ₹20 SP of 15 articles = ₹20 (given) SP of 1 article = ₹20/15 = ₹4/3 Profit = ₹4/3 - ₹1 = ₹1/3 Profit % = (1/3)/1 × 100 = 33.33%
Verbal
Fill in the blank: She _____ to the office every day by metro.
Third-person singular present tense takes "goes".
Verbal
Synonym of "Candid":
Candid means frank or straightforward.
Quantitative
In what ratio should water be mixed with milk costing ₹20 per liter to get a mixture worth ₹15 per liter?
Correct answer: 1:3
Quantitative
Identify the error: "Each of the students have submitted their assignments."
Correct answer: Subject-verb agreement error
Quantitative
The following table shows the sales of a company over 5 years. Find the average annual growth rate. | Year | Sales (in crores) | |------|-------------------| | 2020 | 100 | | 2021 | 120 | | 2022 | 150 | | 2023 | 180 | | 2024 | 200 |
Correct answer: 19.03%
Verbal
Problem: Find the antonym of "BRILLIANT": a) Bright b) Dull c) Shining d) Smart
Brilliant means very bright or intelligent, so "Dull" is the antonym.
Reasoning
Complete the series: AZ, BY, CX, ?
First letter +1, second −1 → DW.
Quantitative
The average of 5 numbers is 42. If one number 32 is removed, the new average is:
Sum = 210. New sum = 178. Average = 178/4 = 44.5.
Your score
0/15(0%)
Review
Sample Publicis Sapient Questions with Solutions
Section titled “Sample Publicis Sapient Questions with Solutions”Practice-style questions (not leaked live papers).
Aptitude / Reasoning
Section titled “Aptitude / Reasoning”Q1: Simple interest on Rs.8000 at 10% for 2 years?
Answer: Rs.1600
Explanation: SI = PRT/100 = 1600.
Q2: If 30% of x = 150, x = ?
Answer: 500
Explanation: 0.3x=150 => x=500.
Q3: Average of 5 numbers is 20. One number 30 replaced by 10. New average?
Answer: 16
Explanation: Sum 100 -> 80; avg 16.
Q4: A finishes in 10 days, B in 15. Together?
Answer: 6 days
Explanation: 1/10+1/15=1/6.
Q5: Probability of drawing an ace from a deck?
Answer: 1/13
Explanation: 4/52=1/13.
Q6: Pipe A fills in 6h, B in 8h. Together to fill?
Answer: 24/7 hours
Explanation: 1/6+1/8=7/24.
Q7: CP Rs.500, SP Rs.600. Profit percent?
Answer: 20%
Explanation: (100/500)*100=20%.
Q8: Find next: 2, 6, 12, 20, 30, ?
Answer: 42
Explanation: n(n+1) pattern.
Coding Practice
Section titled “Coding Practice”Coding Q1: Linked list cycle
Approach: Floyd tortoise-hare.
Complexity: O(1) space
Publicis Sapient tip: Narrate brute force then optimize then edge cases before coding.
Coding Q2: Level order traversal
Approach: BFS queue.
Complexity: O(n)
Publicis Sapient tip: Narrate brute force then optimize then edge cases before coding.
Coding Q3: Coin change min coins
Approach: DP unbounded.
Complexity: O(amount*coins)
Publicis Sapient tip: Narrate brute force then optimize then edge cases before coding.
Coding Q4: Binary search
Approach: Lo/hi mid.
Complexity: O(log n)
Publicis Sapient tip: Narrate brute force then optimize then edge cases before coding.
Coding Q5: Kadane max subarray
Approach: Running best.
Complexity: O(n)
Publicis Sapient tip: Narrate brute force then optimize then edge cases before coding.
Coding Q6: Reverse a string in-place
Approach: Two pointers from ends.
Complexity: O(n)/O(1)
Publicis Sapient tip: Narrate brute force then optimize then edge cases before coding.
Coding Q7: Check prime
Approach: Trial division to sqrt(n).
Complexity: Handle n<2
Publicis Sapient tip: Narrate brute force then optimize then edge cases before coding.
Coding Q8: Valid parentheses
Approach: Stack matching.
Complexity: O(n)
Publicis Sapient tip: Narrate brute force then optimize then edge cases before coding.
Coding Q9: Two Sum
Approach: Hash map complements.
Complexity: O(n)
Publicis Sapient tip: Narrate brute force then optimize then edge cases before coding.
Coding Q10: Longest substring without repeat
Approach: Sliding window + last index.
Complexity: O(n)
Publicis Sapient tip: Narrate brute force then optimize then edge cases before coding.
Deep Prep Notes for Publicis Sapient
Section titled “Deep Prep Notes for Publicis Sapient”How the Publicis Sapient Assessment Usually Feels
Section titled “How the Publicis Sapient Assessment Usually Feels”Candidates describe a paced filter where easy marks disappear if you over-invest in one hard item. For Publicis Sapient, start with a three-minute scan, mark certainty levels, and protect accuracy. Languages typically include Java, JavaScript, Python.
Topic Weight Hints (Candidate-Reported)
Section titled “Topic Weight Hints (Candidate-Reported)”| Area | Why it matters at Publicis Sapient |
|---|---|
| Coding | Primary shortlist signal |
| Core CS (OOPs/DBMS/OS) | Technical interview depth |
| Digital Business Transformation awareness | Managerial / HR differentiation |
| Communication | Especially for consulting and client-facing GSIs |
14-Day Sprint
Section titled “14-Day Sprint”- Days 1-3: pattern familiarization + 2 sectional mocks
- Days 4-7: weak-topic closed practice
- Days 8-10: full mocks every other day
- Days 11-14: interview narration + light revision
Related
Section titled “Related”Coding
OA
Hub
Similar Companies
Section titled “Similar Companies”Thoughtworks · EPAM · Accenture · Deloitte · Globant · Google

