i
Amdocs
Filter interviews by
Severity is the impact of a defect on the system, while priority is the order in which defects should be fixed.
Severity is the measure of how serious a defect is in terms of its impact on the system functionality.
Priority is the order in which defects should be fixed, based on factors like customer requirements and project deadlines.
Example: A defect causing the system to crash would have high severity, but if it ...
A test matrix is a document that maps test cases to requirements or features to ensure comprehensive test coverage.
Test matrix helps in tracking which test cases cover which requirements or features
It ensures that all requirements or features are tested
Test matrix can be in the form of a table with test cases as rows and requirements/features as columns
Use SQL query with JOIN to find salaries from 2 tables.
Use JOIN keyword to combine data from both tables based on a common column
Specify the columns you want to select from both tables
Use WHERE clause to filter the results if needed
SDLC is a process followed by software development teams to design, develop, test and deploy high-quality software.
SDLC stands for Software Development Life Cycle
It consists of several phases including planning, analysis, design, implementation, testing, and maintenance
Each phase has its own set of activities and deliverables
The process ensures that the software is developed efficiently and meets the requirements ...
What people are saying about Amdocs
Sanity and Smoke are types of software testing used to ensure the stability of the application.
Sanity testing is a quick and shallow test to check if the application is stable enough for further testing.
Smoke testing is a broader test to check if the major functionalities of the application are working properly.
Sanity testing is usually performed after a small change in the code, while smoke testing is performed a...
Bugs, defects, and errors are all issues in software development that can cause problems in the functionality of a program.
A bug is a coding mistake that causes unexpected behavior in a program.
A defect is a flaw in the design or functionality of a program.
An error is a mistake made by a user or a program that causes the program to fail.
All three can cause issues in the functionality of a program and need to be id...
Java OOPs concepts include encapsulation, inheritance, polymorphism, and abstraction, essential for object-oriented programming.
Encapsulation: Bundling data and methods. Example: A class 'Car' with attributes like 'speed' and methods like 'accelerate()'.
Inheritance: Mechanism to create a new class from an existing class. Example: 'Sedan' class inherits from 'Car' class.
Polymorphism: Ability to take many forms. Exa...
A prime number program checks if a given number is divisible only by 1 and itself.
Start with checking if the number is less than 2, as 1 is not a prime number.
Loop through all numbers from 2 to the square root of the given number.
Check if the number is divisible by any of the numbers in the loop.
If it is, then it is not a prime number.
If it is not divisible by any of the numbers in the loop, then it is a prime num...
A prime number program checks if a given number is only divisible by 1 and itself.
Start with checking if the number is less than 2, as 1 and 0 are not prime
Loop through all numbers from 2 to the square root of the given number
Check if the number is divisible by any of the numbers in the loop
If it is, then it is not a prime number
If it is not divisible by any of the numbers in the loop, then it is a prime number
Software Development Life Cycle (SDLC) is a process followed by software development teams to design, develop and test high-quality software.
SDLC consists of several phases such as planning, analysis, design, implementation, testing, and maintenance.
Each phase has its own set of activities and deliverables.
SDLC models include Waterfall, Agile, and DevOps.
SDLC helps in delivering high-quality software within budget...
Different parameters in JCL include job name, job class, job priority, job card, job statement, job steps, and job disposition.
Job name: Identifies the job to the operating system
Job class: Specifies the class of resources the job requires
Job priority: Determines the order in which jobs are executed
Job card: Contains information about the job such as account number, job name, and programmer name
Job statement: Defines t...
I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 2 interview rounds.
Contains Technical MCQ questions on JAVA, Functional Tests
I appeared for an interview before Mar 2021, where I was asked the following questions.
Agile is an iterative approach to software development that emphasizes flexibility, collaboration, and customer feedback.
Focuses on delivering small, incremental changes to software.
Encourages collaboration between cross-functional teams, such as developers and testers.
Utilizes time-boxed iterations called sprints, typically lasting 1-4 weeks.
Incorporates regular feedback loops through sprint reviews and retrospectives...
The defect life cycle outlines the stages a defect goes through from identification to closure.
1. **Identification**: A defect is discovered during testing. Example: A bug is found in the login functionality.
2. **Logging**: The defect is documented in a defect tracking tool with details. Example: A ticket is created in JIRA.
3. **Assignment**: The defect is assigned to a developer for resolution. Example: The developer ...
Priority refers to the urgency of fixing a defect, while severity indicates the impact of the defect on the system.
Priority is about the order in which defects should be fixed, while severity is about the impact of the defect.
High severity defects may not always be high priority. For example, a critical bug in a rarely used feature may be severe but low priority.
Conversely, a minor defect in a key feature may be high p...
Smoke testing checks basic functionality, while sanity testing verifies specific functionalities after changes. Both are part of regression testing.
Smoke Testing: A preliminary test to check if the basic functions of an application work. Example: Verifying if the application launches.
Sanity Testing: A focused test to ensure that specific functionalities work after changes. Example: Testing a new feature after a bug fix...
posted on 7 Jun 2024
I applied via Company Website and was interviewed before Jun 2023. There was 1 interview round.
Test cases are detailed steps to test a specific functionality, while test scenarios are high-level descriptions of possible test paths.
Test cases are detailed steps to test a specific functionality or requirement
Test scenarios are high-level descriptions of possible test paths or user interactions
Test cases are more specific and concrete, while test scenarios are more abstract and general
Test cases are usually written...
Severity is the impact of a defect on the system, while priority is the order in which defects should be fixed.
Severity is the measure of how serious a defect is in terms of its impact on the system functionality.
Priority is the order in which defects should be fixed, based on factors like customer requirements and project deadlines.
Example: A defect causing the system to crash would have high severity, but if it only ...
A test matrix is a document that maps test cases to requirements or features to ensure comprehensive test coverage.
Test matrix helps in tracking which test cases cover which requirements or features
It ensures that all requirements or features are tested
Test matrix can be in the form of a table with test cases as rows and requirements/features as columns
I appeared for an interview before Apr 2024, where I was asked the following questions.
Prime numbers are natural numbers greater than 1 that have no divisors other than 1 and themselves.
A prime number is only divisible by 1 and itself. Example: 2, 3, 5, 7.
The number 1 is not considered a prime number.
The first few prime numbers are: 2, 3, 5, 7, 11, 13, 17, 19.
Even numbers greater than 2 are not prime, as they are divisible by 2.
To check if a number n is prime, test divisibility from 2 to √n.
I applied via Company Website and was interviewed before Apr 2023. There were 2 interview rounds.
Experiencing a bottleneck during testing can occur when a certain component or process slows down the overall testing progress.
Identify the root cause of the bottleneck, such as limited resources, inefficient test scripts, or complex test environments.
Implement strategies to alleviate the bottleneck, such as optimizing test scripts, parallelizing test execution, or allocating more resources.
Monitor and track the progre...
I applied via LinkedIn and was interviewed before Apr 2023. There were 2 interview rounds.
Focus on linux
Some of the top questions asked at the Amdocs Functional Test Engineer interview -
The duration of Amdocs Functional Test Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 13 interview experiences
Difficulty level
Duration
based on 156 reviews
Rating in categories
Software Developer
8.5k
salaries
| ₹9.1 L/yr - ₹17 L/yr |
Software Engineer
2k
salaries
| ₹7.4 L/yr - ₹16.2 L/yr |
Softwaretest Engineer
1.8k
salaries
| ₹5.7 L/yr - ₹13.9 L/yr |
Functional Test Engineer
1.2k
salaries
| ₹5 L/yr - ₹12 L/yr |
Associate Software Engineer
1k
salaries
| ₹5 L/yr - ₹12 L/yr |
TCS
IBM
Oracle
Carelon Global Solutions