Skip to content

Amdocs Placement Papers 2024

Overview

This page collects Amdocs placement papers from 2024 with previous-year questions, solutions, and the 2024 exam pattern. It is useful when you want real drive history: what the OA looked like, which question types repeated, and how solutions were approached. Work through the papers below to build speed and accuracy, then compare against newer 2025 material so your prep matches both established Amdocs patterns and the latest shifts.

Amdocs Online Assessment 2024 pattern

Section Questions Time Difficulty
Aptitude 20-25 30 min Medium
Technical 15-20 30 min Medium
Coding 1-2 30 min Medium

Amdocs Placement Papers 2024 - actual questions & solutions

This section contains practice questions styled on Amdocs placement papers 2024 (previous-year pattern), with worked solutions. Use them as timed sectional drills - from student reports drives vary by college and role, so treat this as a high-signal practice bank, not an official paper dump.

Question 1

Q1: A train 180 m long crosses a pole in 12 seconds. Find its speed in km/h.

Solution:

Speed = distance/time = 180/12 m/s = (180/12) × (18/5) = 54 km/h.

Answer: 54 km/h

Question 2

Q2: Simple interest on ₹5000 at 8% per annum for 3 years is?

Solution:

SI = (P × R × T)/100 = (5000 × 8 × 3)/100 = ₹1200.

Answer: ₹1200

Question 3

Q3: Average of 5 numbers is 20. If one number 15 is replaced by 25, what is the new average?

Solution:

Old sum = 5 × 20 = 100. New sum = 100 − 15 + 25 = 110. New average = 110/5 = 22.

Answer: 22

Question 4

Q4: A shopkeeper marks goods 40% above cost and gives a 10% discount. Find the profit percentage.

Solution:

Let CP = 100. MP = 140. SP after 10% discount = 126.

Profit % = 126 − 100 = 26%.

Answer: 26%

Question 5

Q5: Which number does not belong: 3, 5, 11, 14, 17, 21?

Solution:

Pattern: Primes vs non-primes: 14 and 21 composite; classic key often 14

Odd one out = 14.

Answer: 14

Question 6

Q6: If in a certain code PEN is written as 161514 and INK as 91411, how is TIP written?

Solution:

Pattern: positions concatenated T=20,I=9,P=16

Therefore TIP → 20916.

Answer: 20916

Question 7

Q7: Arrange the parts into a meaningful sentence: P) to succeed Q) hard work R) is essential S) in any field

Solution:

Natural order: Q-R-P-S → Hard work is essential to succeed in any field.

Answer: QRPS

Question 8

Q8: Choose the synonym of ‘Diligent’.

Solution:

In placement verbal sections, ‘Diligent’ is closest in meaning to Hardworking among common options.

Answer: Hardworking

Question 9: merge two sorted lists

Show solution

Problem Statement: Merge two sorted linked lists and return a new sorted list.

Example:

Input: 1→2→4 , 1→3→4
Output: 1→1→2→3→4→4

Solution (Java):

public ListNode mergeTwoLists(ListNode a, ListNode b) {
ListNode dummy = new ListNode(0), cur = dummy;
while (a != null && b != null) {
if (a.val <= b.val) { cur.next = a; a = a.next; }
else { cur.next = b; b = b.next; }
cur = cur.next;
}
cur.next = (a != null) ? a : b;
return dummy.next;
}

Time Complexity: O(n + m)
Space Complexity: O(1)

Question 10: two sum

Show solution

Problem Statement: Given an array of integers and a target, return indices of two numbers that add up to target.

Example:

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

Solution (Java):

public int[] twoSum(int[] nums, int target) {
Map<Integer, Integer> map = new HashMap<>();
for (int i = 0; i < nums.length; i++) {
int need = target - nums[i];
if (map.containsKey(need)) return new int[]{map.get(need), i};
map.put(nums[i], i);
}
return new int[]{};
}

Time Complexity: O(n)
Space Complexity: O(n)

Question 11: check palindrome

Show solution

Problem Statement: Return true if the string reads the same forward and backward (ignore case).

Example:

Input: "Level"
Output: true

Solution (Java):

public boolean isPalindrome(String s) {
s = s.toLowerCase();
int i = 0, j = s.length() - 1;
while (i < j) {
if (s.charAt(i++) != s.charAt(j--)) return false;
}
return true;
}

Time Complexity: O(n)
Space Complexity: O(1)

Key insights from 2024 Amdocs Online Assessment

  1. Aptitude Section is Critical: Must perform well in quantitative and logical reasoning
  2. Technical MCQs: Strong emphasis on programming fundamentals, DBMS, OOPs, telecom domain knowledge
  3. Coding Section: 1-2 coding problems in 30 minutes requires good problem-solving skills
  4. Time Management: 20-25 aptitude in 30 min + 15-20 technical in 30 min + 1-2 coding in 30 min
  5. Success Rate: Only 20-25% cleared assessment and advanced to interviews
  6. Platform: Amdocs assessment platform
  7. Focus Areas: Quantitative aptitude, logical reasoning, programming fundamentals, telecom domain knowledge

Amdocs 2024 interview experiences

Based on candidate experiences from 2024 Amdocs interviews:

2024 Interview Process:

  1. Online Assessment (90 minutes): Aptitude (20-25) + Technical (15-20) + Coding (1-2)
  2. Technical Interview (45-60 minutes): Programming concepts, DBMS, OOPs, telecom domain knowledge, problem-solving
  3. HR Interview (30-45 minutes): Behavioral questions, company fit, motivation

Common 2024 Interview Topics:

  • Aptitude: Quantitative reasoning, logical reasoning, percentages, calculations
  • Technical: Programming concepts, DBMS, OOPs, telecom domain knowledge
  • Coding: Arrays, strings, basic algorithms
  • Behavioral: Problem-solving approach, teamwork, motivation

2024 Interview Questions Examples:

  • Percentage Calculation
  • Basic programming concepts and OOPs questions
  • DBMS queries and concepts
  • Telecom domain knowledge questions

Success Tips:

  • Strong aptitude performance is essential - practice quantitative and logical reasoning
  • Understand programming fundamentals, DBMS, OOPs, telecom domain basics
  • Practice coding problems - arrays, strings, basic algorithms
  • Prepare behavioral examples using STAR format
  • Understand Amdocs’s business model and telecom service offerings

For detailed interview experiences, visit Amdocs Interview Experience page.

Preparation tips for Amdocs 2024 pattern

  1. Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
  2. Technical Fundamentals: Strong understanding of programming, DBMS, OOPs concepts
  3. Telecom Domain: Basic understanding of telecom industry and Amdocs services
  4. Practice Previous Year Papers: Solve Amdocs assessment papers from 2020-2024 to understand patterns
  5. Time Management: Practice completing 20-25 aptitude questions in 30 minutes
  6. Coding Practice: Practice arrays, strings, basic algorithms
  7. Technical MCQs: Practice programming concepts, DBMS, OOPs, telecom basics
  8. Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, problem-solving
  9. Mock Tests: Take timed practice tests to improve speed and accuracy
  10. Service-Based Focus: Understand service-based company culture and telecom industry expectations

Comments & Suggestions

Similar companies

Infosys · TCS · Wipro · Accenture · Capgemini · HCL