260interviewsfound Sort by:
Round duration – 50 minutes Round difficulty – Medium
Yes consist of two code and questions MCQ of ds ,algo,Linz,shell,English and DBMS Test happens with your webcam access.
Round duration – 40 minutes Round difficulty – Hard
Late night around at 8 pm Environmental is positive. Interviewer made me feel positive
Round duration – 10 Minutes Round difficulty – Easy
Morning time Positive environment Nice interviewer
There are a number of fields for aspirants of Amdocs, such as corporate functions, business, sales, account management, IT operations, project management and product management, and R & D engineering. There are also options to work from home, as well as opportunities for fresh graduates.
Since you are on the lookout for a job with Amdocs, it is advised for you to join online job portals and professional networking sites. These are great sources to connect with the latest available jobs and with professionals from the industry for possible referrals. You could also put a word to close friends and family who either work with Amdocs or know someone who does. Employee referrals are very efficient sources for an opportunity these days. Lastly, keep a regular check on the career section of Amdocs’ official website, for an opportunity that suits you.
This article has been compiled from various sources including company website, corporate review sites, online discussion forums and knowledge sharing platforms, among others.
Get some ideas on how to answer the most commonly-asked interview questions here: How to Answer 10 Most Common Interview Questions
Besides technical interview questions, you may be asked various non-technical or HR questions. Some of these questions are given below.
How is Ansible different from Puppet?
Ansible | Puppet |
Easy agentless installation | Agent-based installation |
Based on Python | Based on Ruby |
Configuration files are written in YAML | Configuration files are written in DSL |
No support for Windows | Support for all popular OSs |
We will now look at some DevOps interview questions on contanerization.
3 What is Git bisect? How can you use it to determine the source of a (regression) bug?
Git bisect is a tool that uses binary search to locate the commit that triggered a bug.
The git bisect command is used in finding the bug performing commit in the project by using a binary search algorithm.
The bug occurring commit is called the âbadâ commit, and the commit before the bug occurring one is called the âgoodâ commit. We convey the same to the git bisect tool, and it picks a random commit between the two endpoints and prompts whether that one is the âgoodâ or âbadâ one. The process continues uptil the range is narrowed down and the exact commit that introduced the exact change is discovered.