Amdocs interview experience Real time questions & tips from candidates to crack your interview

Developer Associate

Amdocs
upvote
share-icon
3 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 3 months
Topics: Computer Programming,OOPS,Data Structures,Algorithms,SQL, Computer Networks,Flutter
Tip
Tip

Tip 1 : Be regular, take out time everyday to prepare yourself
Tip 2 : Focus on basics as they are very important

Application process
Where: Campus
Eligibility: Above 6 CGPA
Resume Tip
Resume tip

Tip 1 : Don't mention about things which you are not comfortable with
Tip 2 : Have some good projects with their links

Interview rounds

01
Round
Medium
Online Coding Interview
Duration60 mins
Interview date4 Oct 2021
Coding problem1

Virtual, Afternoon
Video Proctoring was there

1. First and Last Position of an element in Sorted Array

Easy
20m average time
80% success
0/40
Asked in companies
AmazonErnst & Young (EY)Google inc

You are given a non-decreasing array 'arr' consisting of 'n' integers and an integer 'x'. You need to find the first and last position of 'x' in the array.


Note:
1. The array follows 0-based indexing, so you need to return 0-based indices.
2. If 'x' is not present in the array, return {-1 -1}.
3. If 'x' is only present once in the array, the first and last position of its occurrence will be the same.


Example:
Input:  arr = [1, 2, 4, 4, 5],  x = 4

Output: 2 3

Explanation: The given array’s 0-based indexing is as follows:
 1      2     4     4     5
 ↓      ↓     ↓     ↓     ↓
 0      1     2     3     4

So, the first occurrence of 4 is at index 2, and the last occurrence of 4 is at index 3.
Try solving now
02
Round
Easy
Face to Face
Duration35 mins
Interview date7 Oct 2021
Coding problem2

Virtual, Afternoon
Interviewer was very calm and composed

1. Check Palindrome

Easy
0/40
Asked in companies
OptumThalesEXL Service

You're given an alphabetical string ‘S’.


Determine whether it is palindrome or not. A palindrome is a string that is equal to itself upon reversing it.


For example:
‘S’ = racecar
The reverse of ‘S’ is: racecar
Since ‘S’ is equal to its reverse. So ‘S’ is a palindrome.
Hence output will be 1.
Problem approach

i wrote a function where i reversed the number and matched it with the original number and returned the answer that was expected. Time complexity came out to be O(log(n))

Try solving now

2. Armstrong Number

Easy
15m average time
85% success
0/40
Asked in companies
OracleIBMOptum

You are given an integer ‘NUM’ . Your task is to find out whether this number is an Armstrong number or not.

A k-digit number ‘NUM’ is an Armstrong number if and only if the k-th power of each digit sums to ‘NUM’.

Example
153 = 1^3 + 5^3 + 3^3.

Therefore 153 is an Armstrong number.
Try solving now
03
Round
Easy
HR Round
Duration15 mins
Interview date8 Oct 2021
Coding problem1

Virtual, Morning
Interviewer was very calm and was smiling whole time

1. Basic HR Questions

Introduction, why to join amdocs, any plan for further studies, some document verifications

Problem approach

Tip 1: Be honest while answering 
Tip 2: Ask any questions you have at the end

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
3 rounds | 4 problems
Interviewed by Amdocs
2059 views
0 comments
0 upvotes
company logo
Software Development
3 rounds | 4 problems
Interviewed by Amdocs
8251 views
0 comments
0 upvotes
company logo
Associate Software Engineer
4 rounds | 6 problems
Interviewed by Amdocs
1269 views
0 comments
0 upvotes
company logo
Software Engineer
1 rounds | 1 problems
Interviewed by Amdocs
652 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Developer Associate
5 rounds | 6 problems
Interviewed by SAP Labs
2196 views
0 comments
0 upvotes
company logo
Developer Associate
4 rounds | 5 problems
Interviewed by SAP Labs
912 views
0 comments
0 upvotes
company logo
Developer Associate
4 rounds | 6 problems
Interviewed by SAP Labs
1613 views
0 comments
0 upvotes