Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Amdocs Team. If you also belong to the team, you can get access from here

Amdocs Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Amdocs Technical Support Engineer Interview Questions and Answers for Experienced

Updated 8 Feb 2024

Amdocs Technical Support Engineer Interview Experiences for Experienced

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. 2 rounds conducted 1st was technical were the question mainly consist of linux commands and sql basic plus scenario based questions. 2nd round was managerial round that was short based on behavioural quest...
  • Q2. Dml,ddl, how to open process in linux
  • Ans. 

    DML and DDL are SQL commands for manipulating and defining database objects. To open a process in Linux, use the 'open' command.

    • DML (Data Manipulation Language) is used to manipulate data in a database, such as inserting, updating, and deleting records.

    • DDL (Data Definition Language) is used to define the structure and schema of a database, such as creating tables, indexes, and constraints.

    • To open a process in Linux, yo...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I appeared for an interview in Jul 2019.

Interview Questionnaire 

4 Questions

  • Q1. 1. Java questions basee on interfaces, Exception Handling, inheritance, Steam API;
  • Q2. 2. SQL questions related to joins, sub-queries, nth highest salary;
  • Q3.  3. Basic algorithms questions based on Arrays/Linked List.
  • Q4. 4. Puzzles based on basic aptitudes test.

Interview Preparation Tips

Interview preparation tips for other job seekers - I was interviewed for Java Developer. I had 4 rounds (all technical rounds). Each rounds comprises questions related to Java/Puzzles/Algorithms and my experience of project.

Go through your resume. Things should be relevant and one should have clear understanding of basics.

I applied via Company Website and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. How does you skills relate to this job
  • Q2. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare and stay confident

I applied via Naukri.com and was interviewed in Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly technical and work related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a 2 round interview. First one was technical and second one was techno cum managerial round.
In first round, you will be asked about your technology/skill.....questions will be average but not tough. Interviewer will try to see whether you are technically strong.

After one day HR team will call you and will ask for scheduling a meeting with manager/delivery manager/delivery head
This round will be some what tougher than first round.
You will be asked many scenario based questions which include technical and HR type. If you are able to convince the manager....you are selected

Later you will get call from HR regarding the salary discussion

I applied via Campus Placement and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1.  OOPS concepts
  • Q2. Data Structure basics questions
  • Q3. Puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - I applied through campus placement
1) HirePro Test - Apti + Tech MCQS
2) Tech + HR interview

I applied via Walk-in and was interviewed before Mar 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Core Java, Framework, SQL, J2EE usages, Real time analysis for improving current solutions, tools or ideas, Health care and insurance basics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, express your thoughts with interviewer. Take some seconds of time prior explaining to question asked. Be expressive and use non-verbal communication gestures as most as you can while answer and correlate with your words.

I applied via Campus Placement and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions will be totally based on your 'RESUME'.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer was cool and he just made me feel confident before answering each question.

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Ans. 

    Find 5 missing numbers in an array of size 95 containing numbers in range 1 to 100.

    • Create a boolean array of size 100 and mark the present numbers

    • Iterate through the boolean array and find the missing numbers

    • Alternatively, use a HashSet to store the present numbers and find the missing ones

  • Answered by AI
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Solving puzzles(25 horses,ant and sweets,height of a building..) try as many as possible before appearing for interview
  • Q2. If experienced , then project details of previous companies a must prepare question
  • Q3. Writing test cases for random scenarios
  • Q4. Programming in whatsoever language you r comfortable with, basic coding problems of DS,Algos. eg. Zigzag tree traversal algo,random linked list copy
  • Q5. Some people asked me questions related to the work i will do if hired in the project
  • Q6. Be genuine in ur CV, and be prepared with everything you write there.

Interview Preparation Tips

College Name: Na

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had a standard resume for this company as per the norms of our institute’s placement cell. For Oracle I laid emphasis on my programming skills and projects related to it.

Round: Test
Experience: The first round was the written test that comprised of 5 sections – vocabulary, aptitude, pattern matching, logical reasoning and programming. The questions in the programming section were asked from data structures and C++. The questions in the programming section were mainly from trees (from data structures). Around 400 students appeared for their written test out of which around 100 were shortlisted.

Round: HR Interview
Experience: The next round was the interview round. They gave me some puzzles to solve and a program to write. One of the puzzles that I remember was that if I were to be given an egg then how would I determine its durability, i.e. how would I determine that from which floor do I need to throw the egg from so that the egg does not break if thrown from any floor below it.
For the coding question I was given a mathematical formula and I was asked to devise a code such that the program uses the formula and gives the output.
Tips: Prepare for Data Structures as well as the commonly asked puzzles for Oracle.

College Name: IIT ROORKEE
Motivation: Oracle is a reputed company in the space of software and ITeS. It had come to our campus with five profiles. The best means to know about all of them is to attend the pre-placement talk of the company.

Amdocs Interview FAQs

How many rounds are there in Amdocs Technical Support Engineer interview for experienced candidates?
Amdocs interview process for experienced candidates usually has 1 rounds. The most common rounds in the Amdocs interview process for experienced candidates are Technical.
What are the top questions asked in Amdocs Technical Support Engineer interview for experienced candidates?

Some of the top questions asked at the Amdocs Technical Support Engineer interview for experienced candidates -

  1. Dml,ddl, how to open process in li...read more
  2. 2 rounds conducted 1st was technical were the question mainly consist of linux ...read more

Tell us how to improve this page.

Amdocs Technical Support Engineer Interview Process for Experienced

based on 1 interview

Interview experience

4
  
Good
View more
Amdocs Technical Support Engineer Salary
based on 52 salaries
₹2.5 L/yr - ₹10 L/yr
19% more than the average Technical Support Engineer Salary in India
View more details

Amdocs Technical Support Engineer Reviews and Ratings

based on 3 reviews

4.4/5

Rating in categories

3.6

Skill development

4.4

Work-life balance

3.6

Salary

4.4

Job security

4.1

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 3 Reviews and Ratings
Software Developer
8.3k salaries
unlock blur

₹5 L/yr - ₹17 L/yr

Software Engineer
1.9k salaries
unlock blur

₹4 L/yr - ₹16 L/yr

Softwaretest Engineer
1.7k salaries
unlock blur

₹2.9 L/yr - ₹14 L/yr

Functional Test Engineer
1.2k salaries
unlock blur

₹4 L/yr - ₹12.4 L/yr

Associate Software Engineer
1k salaries
unlock blur

₹3.5 L/yr - ₹12 L/yr

Explore more salaries
Compare Amdocs with

TCS

3.7
Compare

IBM

4.0
Compare

Oracle

3.7
Compare

Carelon Global Solutions

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview