Glassdoor users rated their interview experience at Amdocs as 100% positive with a difficulty rating score of 3 out of 5 (where 5 is the highest level of difficulty). Candidates interviewing for Release Manager and rated their interviews as the hardest, whereas interviews for Release Manager and roles were rated as the easiest.
I applied online. The process took 1 day. I interviewed at Amdocs (Pune) in Jul 2019
Interview
I was hired as a fresher in 2019 for the role of DWH/BI Developer. The Interviewers were very calm and interested in listening to new ideas. I was asked questions on the basics of SQL and Data Engineering Questions as well as My Final year project.
Interview questions [1]
Question 1
What is the difference between Truncate and Delete in SQL
I applied through college or university. The process took 2 weeks. I interviewed at Amdocs (Pune) in Jan 2017
Interview
Round of interview will be in ofc at Tower2. Good thing was Interviewer was cool. Our previous project needs to be explained. Need to know Software development life cycle. 2 Rounds of Interview was conducted.
I applied through an employee referral. I interviewed at Amdocs (Pune) in Mar 2021
Interview
The interview happened online through Google Meet.
There were total 4 rounds, But I got rejected after 3 round which was mangerial round.
The 3 rounds were as follows -
1. Techniqual Round 1
2. Techniqual Round 2
3. Mangerial Round
Interview questions [1]
Question 1
Profile: Software Developer (UI Developer - React)
Branch: Pune
Mode: Microsoft Teams
Duration: 1hr 10min
Level: Very Easy - Easy
Round 1: Coding, JavaScript and ReactJs
What will be the output of the program and why?
const a = { name: ‘ram’ }
const b = a
b.lastName = ‘Lakhan’;
b.gender = ‘Male’
console.log(a, b);
What will be the output of the program and why?
const a = { value: 15 }
a.func = () => console.log(‘karan’);
console.log(a)
What will be the output of the program and why?
for (var i = 0; I < 4; i++ ) {
setTimeout( function () {
console.log(i)
}, 2000)
Change the output to print different numbers with ES5 feature only.
We have two objects: Create a merge function to merge obj2 properties into obj1.
Without using any inbuilt methods.
let obj1 = { name: ‘karan’, lastName: ‘negi’ }
let obj2 = { age: ‘26’, occupation: ‘developer’ }
Output should be like –
obj1 = { name: ‘karan’, lastName: ‘negi’, age:’26’, occupation: ‘developer’ }
Write a function such that it returns, any value b/w max and min but not
the max and min value in an array.
i.e let arr = [ 3, 5, 7, 1, 9 ]
Output can be : 3 or 5 or 7
What will be the output: var output = ( function (x) {
delete x;
return x;
})(0);
How Javascript Engine works ?
How asynchronous things happen in Javascript ?
What happens if we do this. state instead of using this.setState()?
How connect Method works in Redux.
How will you pass child component props back to the parent component?
Round 2: Coding, ReactJs and JavaScript
Duration: 1hr 15min
Level: Very Easy - Easy
Mode: Microsoft Teams
What is a prototype in Javascript?
What is babel, and why do we need it?
What is webpack, and why do we need it?
React Lifecycle Methods .
D/w Functional Component and Class Based Component.
How to connect to Redux using a functional based component.
Types of hooks in functional based components.
WAP to find a factorial of a number using Recursion.
Write a function that accepts a string and print out the input in reverse order
i.e Input : Welcome to Javascript
Output: emocleW ot tpircsavaJ
What is the output of the following program -
let arr = [‘karan’, ‘singh’, ‘negi’, ‘the’, ‘greatest’]
console.log(arr.splice(1))
What is the output of the following program -
for (var i = 0; I < 4; i++ ) {
setTimeout( function () {
console.log(i)
}, 2000)
What is the output of the following program -
var num = 15;
function number() {
console.log(num)
var num = 18;
}
number()
What is the difference b/w == and === ?
Round 3: Managerial Round
Duration:
Mode: Microsoft Teams
Introduce yourself.
Tell me about your strengths
Did you have any conflict in previous company regarding work
How do you manage your time
What is your salary expectation and why should we hire you
Tell me about the difficult task that you have encountered in your previous project.