Aptitude
GlobalLogic placement papers 2025
Overview
Section titled “Overview”GlobalLogic placement papers 2025. Primary filter: GlobalLogic Online Test. Focus: Coding, OOPs, system basics.
GlobalLogic 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
Statements: 1. All green are blue, 2. All blue are white
From "All green are blue": Some blue are green (I follows) Combined: All green are white, so Some white are green (II follows) and Some green are white (III follows) IV does not follow
Quantitative
A is twice as efficient as B. Together they complete a work in 12 days. In how many days will A alone complete it?
Let B's efficiency = 1 unit/day A's efficiency = 2 units/day Together: 1 + 2 = 3 units/day Total work = 3 × 12 = 36 units A alone: 36 / 2 = 18 days
Quantitative
A man invests ₹10,000 in a scheme which offers 10% per annum compound interest. Find the amount after 2 years.
Principal = ₹10,000 Rate = 10%, Time = 2 years Amount = P(1 + R/100)² = 10000(1 + 10/100)² = 10000(1.1)² = 10000 × 1.21 = ₹12,100
Quantitative
A car covers 180 km in 3 hours. Average speed is:
Speed = 180/3 = 60 km/h.
Quantitative
A is twice as old as B. 10 years ago, A was 4 times as old as B. Find the present age of A.
Correct answer: 30 years
Verbal
Choose the correct sentence:
Neither takes singular verb; "options" is plural noun with of.
Reasoning
A walks 6 km north, then 8 km east. Distance from start is:
Right triangle → 10 km.
Verbal
"She was _____ by the beautiful sunset."
Past tense passive voice requires past participle "amazed".
Verbal
The idiom "a piece of cake" means:
It means: very easy.
Reasoning
Pointing to a photograph, Ravi said, "He is the son of my grandfather's only son." The boy is Ravi's:
Grandfather's only son is Ravi's father → the boy is Ravi's brother.
Quantitative
A sum of money doubles itself in 5 years at simple interest. In how many years will it become 4 times?
Correct answer: 15 years
Verbal
Problem: Find the synonym of "MAGNIFICENT": a) Ordinary b) Splendid c) Small d) Ugly
Magnificent means impressively beautiful or grand, so "Splendid" is the synonym.
Quantitative
Find compound interest on ₹10,000 for 2 years at 10% per annum, compounded annually.
Amount = P(1 + R/100)^n Amount = 10000(1 + 10/100)^2 = 10000 × 1.1^2 = 10000 × 1.21 = ₹12,100 CI = Amount - Principal = 12100 - 10000 = ₹2,100
Reasoning
If letter positions are summed (A=1…Z=26), PEN equals:
Sum of positions = 35.
Reasoning
Arrange in dictionary order: Apple, Apply, Apt, Apex. Third word is:
Order: Apex, Apple, Apply, Apt → third is Apply.
Your score
0/15(0%)
Review
Sample GlobalLogic Questions with Solutions
Section titled “Sample GlobalLogic Questions with Solutions”Practice-style questions (not leaked live papers).
Aptitude / Reasoning
Section titled “Aptitude / Reasoning”Q1: Average of 5 numbers is 20. One number 30 replaced by 10. New average?
Answer: 16
Explanation: Sum 100 -> 80; avg 16.
Q2: A finishes in 10 days, B in 15. Together?
Answer: 6 days
Explanation: 1/10+1/15=1/6.
Q3: Probability of drawing an ace from a deck?
Answer: 1/13
Explanation: 4/52=1/13.
Q4: Pipe A fills in 6h, B in 8h. Together to fill?
Answer: 24/7 hours
Explanation: 1/6+1/8=7/24.
Q5: CP Rs.500, SP Rs.600. Profit percent?
Answer: 20%
Explanation: (100/500)*100=20%.
Q6: Find next: 2, 6, 12, 20, 30, ?
Answer: 42
Explanation: n(n+1) pattern.
Q7: A train 120 m long runs at 54 km/h. Time to pass a pole?
Answer: 8 seconds
Explanation: 54 km/h = 15 m/s; t = 120/15 = 8 s.
Q8: Ratio of ages A:B = 4:5. After 6 years = 6:7. A present age?
Answer: 12 years
Explanation: 4x+6 / 5x+6 = 6/7 => x=3 => A=12.
Coding Practice
Section titled “Coding Practice”Coding Q1: Level order traversal
Approach: BFS queue.
Complexity: O(n)
GlobalLogic tip: Narrate brute force then optimize then edge cases before coding.
Coding Q2: Coin change min coins
Approach: DP unbounded.
Complexity: O(amount*coins)
GlobalLogic tip: Narrate brute force then optimize then edge cases before coding.
Coding Q3: Binary search
Approach: Lo/hi mid.
Complexity: O(log n)
GlobalLogic tip: Narrate brute force then optimize then edge cases before coding.
Coding Q4: Kadane max subarray
Approach: Running best.
Complexity: O(n)
GlobalLogic tip: Narrate brute force then optimize then edge cases before coding.
Coding Q5: Reverse a string in-place
Approach: Two pointers from ends.
Complexity: O(n)/O(1)
GlobalLogic tip: Narrate brute force then optimize then edge cases before coding.
Coding Q6: Check prime
Approach: Trial division to sqrt(n).
Complexity: Handle n<2
GlobalLogic tip: Narrate brute force then optimize then edge cases before coding.
Coding Q7: Valid parentheses
Approach: Stack matching.
Complexity: O(n)
GlobalLogic tip: Narrate brute force then optimize then edge cases before coding.
Coding Q8: Two Sum
Approach: Hash map complements.
Complexity: O(n)
GlobalLogic tip: Narrate brute force then optimize then edge cases before coding.
Coding Q9: Longest substring without repeat
Approach: Sliding window + last index.
Complexity: O(n)
GlobalLogic tip: Narrate brute force then optimize then edge cases before coding.
Coding Q10: Merge intervals
Approach: Sort + merge.
Complexity: O(n log n)
GlobalLogic tip: Narrate brute force then optimize then edge cases before coding.
Deep Prep Notes for GlobalLogic
Section titled “Deep Prep Notes for GlobalLogic”How the GlobalLogic Online Test Usually Feels
Section titled “How the GlobalLogic Online Test Usually Feels”Candidates describe a paced filter where easy marks disappear if you over-invest in one hard item. For GlobalLogic, start with a three-minute scan, mark certainty levels, and protect accuracy. Languages typically include Java, C++, Python.
Topic Weight Hints (Candidate-Reported)
Section titled “Topic Weight Hints (Candidate-Reported)”| Area | Why it matters at GlobalLogic |
|---|---|
| Coding | Primary shortlist signal |
| Core CS (OOPs/DBMS/OS) | Technical interview depth |
| Digital Product Engineering 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

