Aptitude
American Express placement papers 2024
Overview
Section titled “Overview”American Express placement papers 2024. Primary filter: Amex Online Assessment. Focus: DSA, Java, SQL, product thinking.
American Express 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.
Quantitative
A number when divided by 5 leaves remainder 3. What is remainder when twice the number is divided by 5?
n = 5k+3 → 2n = 10k+6 = 5(2k+1)+1 → remainder 1.
Reasoning
Find the next number in the series: 2, 6, 12, 20, 30, ?
Pattern analysis: - 2 = 1 × 2 - 6 = 2 × 3 - 12 = 3 × 4 - 20 = 4 × 5 - 30 = 5 × 6 Next term = 6 × 7 = 42
Quantitative
A 120 m train crosses a pole in 8 s. Speed in km/h is:
Speed = 120/8 = 15 m/s = 54 km/h.
Reasoning
Two trains move in the same direction at 50 kmph and 32 kmph respectively. A man in the slower train observes that 15 seconds elapse before the faster train completely passes by him. What is the length of the faster train?
Relative speed = 50 - 32 = 18 kmph = 18 × 5/18 = 5 m/s Time = 15 seconds Length of faster train = Relative speed × Time = 5 × 15 = 75 meters
Reasoning
Statements: All engineers are professionals. Some professionals are managers. Conclusions: I. Some engineers are managers. II. All managers are engineers.
Analyzing the statements: - All engineers are professionals (A → B) - Some professionals are managers (B → C, some) Conclusion I: Some engineers are managers - Since all engineers are professionals, and some professionals are managers, we can say some engineer
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
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
Fill in: She is good _____ mathematics.
Good at a subject.
Reasoning
If every letter is shifted +2 in the alphabet, PEN becomes:
Each letter +2 → RGP.
Verbal
A trader sells an article at a profit of 25%. If he had bought it at 10% less and sold it for ₹15 less, he would have gained 30%. Find the cost price of the article.
Let actual CP = x Actual SP = 1.25x (25% profit) New CP = 0.9x (10% less) New SP = 1.25x - 15 New Profit = (1.25x - 15) - 0.9x = 0.35x - 15 New Profit % = ((0.35x - 15)/0.9x) × 100 = 30 (0.35x - 15)/0.9x = 0.30 0.35x - 15 = 0.27x 0.08x = 15 x = ₹187.50
Verbal
One who loves books is a:
Bibliophile = lover of books.
Quantitative
If 20% of a number is 48, the number is:
Number = 48 × 100/20 = 240.
Verbal
Find the synonym of "Benevolent".
Correct answer: Kind
Reasoning
Which of the following is the next term in the series: 2, 6, 12, 20, 30, ?
Pattern: Differences are 4, 6, 8, 10 (consecutive even numbers) Next difference = 12 Next term = 30 + 12 = 42 Alternative pattern: n(n+1) where n starts from 1 1×2=2, 2×3=6, 3×4=12, 4×5=20, 5×6=30, 6×7=42
Quantitative
Two numbers are in ratio 3:5 and their sum is 56. The larger number is:
Parts = 8. Larger = 5/8 × 56 = 35.
Your score
0/15(0%)
Review
Sample American Express Questions with Solutions
Section titled “Sample American Express 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: Longest substring without repeat
Approach: Sliding window + last index.
Complexity: O(n)
American Express tip: Narrate brute force then optimize then edge cases before coding.
Coding Q2: Merge intervals
Approach: Sort + merge.
Complexity: O(n log n)
American Express tip: Narrate brute force then optimize then edge cases before coding.
Coding Q3: Top K frequent
Approach: Count + heap.
Complexity: O(n log k)
American Express tip: Narrate brute force then optimize then edge cases before coding.
Coding Q4: Linked list cycle
Approach: Floyd tortoise-hare.
Complexity: O(1) space
American Express tip: Narrate brute force then optimize then edge cases before coding.
Coding Q5: Level order traversal
Approach: BFS queue.
Complexity: O(n)
American Express tip: Narrate brute force then optimize then edge cases before coding.
Coding Q6: Coin change min coins
Approach: DP unbounded.
Complexity: O(amount*coins)
American Express tip: Narrate brute force then optimize then edge cases before coding.
Coding Q7: Binary search
Approach: Lo/hi mid.
Complexity: O(log n)
American Express tip: Narrate brute force then optimize then edge cases before coding.
Coding Q8: Kadane max subarray
Approach: Running best.
Complexity: O(n)
American Express tip: Narrate brute force then optimize then edge cases before coding.
Coding Q9: Reverse a string in-place
Approach: Two pointers from ends.
Complexity: O(n)/O(1)
American Express tip: Narrate brute force then optimize then edge cases before coding.
Coding Q10: Check prime
Approach: Trial division to sqrt(n).
Complexity: Handle n<2
American Express tip: Narrate brute force then optimize then edge cases before coding.
Deep Prep Notes for American Express
Section titled “Deep Prep Notes for American Express”How the Amex Online Assessment Usually Feels
Section titled “How the Amex Online Assessment Usually Feels”Candidates describe a paced filter where easy marks disappear if you over-invest in one hard item. For American Express, start with a three-minute scan, mark certainty levels, and protect accuracy. Languages typically include Java, Python, SQL.
Topic Weight Hints (Candidate-Reported)
Section titled “Topic Weight Hints (Candidate-Reported)”| Area | Why it matters at American Express |
|---|---|
| DSA | Primary shortlist signal |
| Core CS (OOPs/DBMS/OS) | Technical interview depth |
| Payments, Credit Cards 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”Mastercard · Visa · Capital One · PayPal · Barclays · Google

