Upload Button Icon Add office photos
Engaged Employer

i

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

NICE Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

NICE Qa Automation Testing Engineer Interview Questions, Process, and Tips

Updated 11 May 2024

NICE Qa Automation Testing Engineer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(8 Questions)

  • Q1. 1-Java Questions- this, super keyword, Difference between Abstract class and interfece
  • Q2. 2-Asked OOPs concepts, asked questions on method overloading and overrding
  • Q3. 3-Java program to reverse string, check palindrome
  • Ans. 

    Java program to reverse string and check if it is a palindrome.

    • Create a function to reverse the input string.

    • Compare the reversed string with the original string to check if it is a palindrome.

    • Use built-in functions like StringBuilder or StringBuffer for string manipulation.

    • Handle cases where input is null or empty.

  • Answered by AI
  • Q4. 4- Selenium questions- list vs set, findelement vs findelements, Actions class, write syntax for actions class, implict wait and explict wait
  • Ans. 

    Selenium questions covering list vs set, findelement vs findelements, Actions class, implicit wait, and explicit wait.

    • List vs Set: List allows duplicate elements and maintains insertion order, while Set does not allow duplicates.

    • findElement vs findElements: findElement returns the first matching element, findElements returns a list of all matching elements.

    • Actions class: Used for performing complex user interactions li...

  • Answered by AI
  • Q5. 5- Questions on mostly used git commands, what is CICD
  • Q6. 6-API testing various response codes
  • Ans. 

    API testing involves checking various response codes to ensure the API functions correctly.

    • Test for common response codes like 200 (OK), 400 (Bad Request), 401 (Unauthorized), 404 (Not Found), 500 (Internal Server Error)

    • Verify the response code matches the expected result based on the API request

    • Use tools like Postman or RestAssured to automate API testing and check response codes

    • Check for edge cases where the API may

  • Answered by AI
  • Q7. 7- Manual testing questions- what is regression testing, difference between regression and restesting Difference between intergration and system testing
  • Q8. 8- agile process, what is user story, what is sprint
  • Ans. 

    User story is a description of a feature from an end-user perspective, and sprint is a time-boxed iteration in Agile development.

    • User story is a short, simple description of a feature told from the perspective of the person who desires the new capability.

    • Sprint is a time-boxed iteration in Agile development, usually lasting 1-4 weeks, where a team works on a set of user stories.

    • User stories are written in a specific fo...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for NICE Qa Automation Testing Engineer interview:
  • Java, selenium, testNG, git
  • API Testing
  • Manual Testing
Interview preparation tips for other job seekers - Prepare for Java questions, do some basic java codes practice, git coomands, TestNG annotations, testng frequently asked questions, api testing

Skills evaluated in this interview

Interview questions from similar companies

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

(1 Question)

  • Q1. Reverse the characters of words in the string
  • Ans. 

    Reverse the characters of words in a string

    • Split the string into an array of words

    • Reverse each word in the array

    • Join the reversed words back into a single string

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. What kind of projects have you worked on
  • Ans. 

    I have worked on projects involving automation testing of web applications using Selenium and API testing using Postman.

    • Automation testing of web applications

    • API testing using Postman

    • Experience with Selenium

    • Integration testing

    • Regression testing

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 2022. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Be prepared with your strength and weakness and just be yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and focus on the basics whatever you have learnt throughout your curriculum.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

1 hr test, simple aptitude questions

Round 3 - Coding Test 

Simple coding questions

Round 4 - Technical 

(3 Questions)

  • Q1. Reverse the string
  • Ans. 

    Reverse a given string

    • Iterate through the string from end to start and append each character to a new string

    • Use built-in functions like reverse() in Python or StringBuilder.reverse() in Java

    • Convert the string to an array, reverse the array, and convert it back to a string

  • Answered by AI
  • Q2. Basic Networking questions
  • Q3. Questions on working of jvm

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2022. There were 4 interview rounds.

Round 1 - Coding Test 

2 questions Based on arrays level of medium

Round 2 - Technical 

(1 Question)

  • Q1. 2 questions based on array and linked list
Round 3 - Technical 

(1 Question)

  • Q1. Question based on metrix
Round 4 - HR 

(1 Question)

  • Q1. Behavioural questions

Interview Preparation Tips

Topics to prepare for ServiceNow Associate Software Engineer interview:
  • Data Structures
  • OOPS
Interview preparation tips for other job seekers - Mostly data structures topics are important so you can practicing data structures questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
-

I applied via Campus Placement and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

MCQ and essay writing

Round 2 - Technical 

(2 Questions)

  • Q1. What are Oops concepts ?
  • Ans. 

    Oops concepts are the principles of Object Oriented Programming, including Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementatio...

  • Answered by AI
  • Q2. What is join and types of join?
  • Ans. 

    Join is used to combine rows from two or more tables based on a related column between them.

    • Types of joins include inner join, outer join (left, right, full), cross join, self join.

    • Inner join returns rows when there is at least one match in both tables.

    • Outer join returns all rows from one table and matching rows from the other table.

    • Cross join returns the Cartesian product of the two tables.

    • Self join is used to join a

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell be about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for software development.

    • Recent graduate with a degree in Computer Science

    • Passionate about software development

    • Experience with programming languages like Java and Python

  • Answered by AI
  • Q2. What are your hobbies
  • Ans. 

    My hobbies include playing guitar, hiking, and reading science fiction novels.

    • Playing guitar: I enjoy learning new songs and practicing different techniques.

    • Hiking: I love exploring nature trails and challenging myself with long hikes.

    • Reading science fiction novels: I find it fascinating to immerse myself in futuristic worlds and imaginative stories.

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Write a code of binary search
  • Ans. 

    Binary search is an efficient algorithm for finding an item from a sorted list of items.

    • Requires a sorted array to function correctly.

    • Divides the search interval in half with each iteration.

    • Time complexity is O(log n), making it faster than linear search.

    • Example: Searching for '5' in [1, 2, 3, 4, 5, 6] results in index 4.

  • Answered by AI
  • Q2. What is pagging in Operating system
  • Ans. 

    Paging is a memory management scheme that eliminates the need for contiguous allocation of physical memory.

    • Divides memory into fixed-size blocks called pages.

    • Pages are mapped to physical memory frames, allowing non-contiguous allocation.

    • Improves memory utilization and reduces fragmentation.

    • Example: A process with 4 pages can be loaded into any 4 available frames in memory.

    • Paging allows for virtual memory, enabling proc...

  • Answered by AI

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Timing - flexible 12 hours window to take the test. (9AM - 9PM)
Test was proctored

  • Q1. 

    Combination Sum Problem Statement

    Given three integers X, Y, and Z, calculate the sum of all numbers that can be formed using the digits 3, 4, and 5. Each digit can be used up to a maximum of X, Y, and Z ...

  • Ans. 

    Calculate the sum of all numbers that can be formed using the digits 3, 4, and 5 with given constraints.

    • Iterate through all possible combinations of 3, 4, and 5 based on the given constraints.

    • Calculate the sum of each combination and add them up.

    • Return the final sum modulo 10^9 + 7.

  • Answered by AI
  • Q2. 

    Longest Path In Directed Graph Problem Statement

    Given a Weighted Directed Acyclic Graph (DAG) comprising 'N' nodes and 'E' directed edges, where nodes are numbered from 0 to N-1, and a source node 'Src'....

  • Ans. 

    The task is to find the longest distances from a source node to all nodes in a weighted directed acyclic graph.

    • Implement a function that takes the number of nodes, edges, source node, and edge weights as input.

    • Use a topological sorting algorithm to traverse the graph and calculate the longest distances.

    • Return an array of integers where each element represents the longest distance from the source node to the correspondi

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Easy

Timing - 9:00 AM - 9:40 AM

  • Q1. 

    Factorial Trailing Zeros Problem

    You are provided with a positive integer N. Your goal is to determine the smallest number whose factorial has at least N trailing zeros.

    Example:

    Input:
    N = 1
    Output:
    ...
  • Ans. 

    Find the smallest number whose factorial has at least N trailing zeros.

    • Calculate the number of 5's in the prime factorization of the factorial to determine the trailing zeros.

    • Use binary search to find the smallest number with at least N trailing zeros.

    • Consider edge cases like N = 0 or N = 1 for factorial trailing zeros problem.

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, your task is to return the head of the reversed linked list.

    Example:

    Input:
    The given linked list is 1 -> 2 -> 3 -&g...
  • Ans. 

    To reverse a singly linked list of integers, return the head of the reversed linked list.

    • Iterate through the linked list, reversing the pointers to point to the previous node instead of the next node.

    • Keep track of the previous, current, and next nodes while traversing the list.

    • Update the head of the reversed linked list to be the last element of the original list.

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Easy

Timing - 12:00 Pm to 12:40 PM

  • Q1. 

    Implementing a Priority Queue Using Heap

    Ninja has been tasked with implementing a priority queue using a heap data structure. However, he is currently busy preparing for a tournament and has requested yo...

  • Ans. 

    Implement a priority queue using a heap data structure by completing the provided functions: push(), pop(), getMaxElement(), and isEmpty().

    • Understand the operations: push() to insert element, pop() to remove largest element, getMaxElement() to return largest element, and isEmpty() to check if queue is empty.

    • Implement a heap data structure to maintain the priority queue.

    • Handle different types of queries based on the inp...

  • Answered by AI
  • Q2. 

    Largest BST Subtree Problem

    Given a binary tree with 'N' nodes, determine the size of the largest subtree that is also a BST (Binary Search Tree).

    Input:

    The first line contains an integer 'T', represen...
  • Ans. 

    The problem involves finding the size of the largest subtree that is also a Binary Search Tree in a given binary tree.

    • Traverse the binary tree in a bottom-up manner to check if each subtree is a BST.

    • Keep track of the size of the largest BST subtree encountered so far.

    • Use recursion to solve the problem efficiently.

    • Consider edge cases like empty tree or single node tree.

    • Example: For input 1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1

  • Answered by AI
Round 4 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

Timing - 6:00 PM - 6:30 PM

  • Q1. Can you design a system similar to Splitwise and identify three features that you would change or improve?
  • Ans. 

    Design a system similar to Splitwise and suggest three features for improvement.

    • Implement a real-time notification system for updates on shared expenses

    • Integrate a feature for automatic currency conversion for international transactions

    • Enhance the user interface with data visualization tools for better expense tracking

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Netaji Subhas University Of Technology. I applied for the job as Associate Software Engineer in BangaloreEligibility criteriaNo criteriaSalesforce interview preparation:Topics to prepare for the interview - Data Structures, Dynamic Programming, OOPS, OS, DBMS.Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : For fresher role, System design is not very important.
Tip 2 : Do at least 1-2 good quality projects.
 

Application resume tips for other job seekers

Tip 1 : Have 1-2 good engaging projects in resume.
Tip 2 : Internships are helpful.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Consists of basic coding questions from trees and arrays

Round 3 - Technical 

(1 Question)

  • Q1. Oops, C++ like inline functions etc
Round 4 - HR 

(1 Question)

  • Q1. Hypothetical situations

Interview Preparation Tips

Interview preparation tips for other job seekers - It's easy don't be stressed
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

General Aptitude Question

Round 2 - Technical 

(2 Questions)

  • Q1. Project related question
  • Q2. One programming question factorial of 5
Round 3 - HR 

(1 Question)

  • Q1. Basic behavioral question

Interview Preparation Tips

Topics to prepare for KPIT Technologies Associate Software Engineer interview:
  • Java
  • OOPS
  • Basic dsa
  • Project
Interview preparation tips for other job seekers - Basic concept is necessary for crack this company

NICE Interview FAQs

How many rounds are there in NICE Qa Automation Testing Engineer interview?
NICE interview process usually has 1 rounds. The most common rounds in the NICE interview process are Technical.
What are the top questions asked in NICE Qa Automation Testing Engineer interview?

Some of the top questions asked at the NICE Qa Automation Testing Engineer interview -

  1. 4- Selenium questions- list vs set, findelement vs findelements, Actions class,...read more
  2. 8- agile process, what is user story, what is spr...read more
  3. 3-Java program to reverse string, check palindr...read more

Tell us how to improve this page.

NICE Qa Automation Testing Engineer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 866 Interviews
KPIT Technologies Interview Questions
3.4
 • 291 Interviews
Adobe Interview Questions
3.9
 • 236 Interviews
Salesforce Interview Questions
4.0
 • 230 Interviews
Freshworks Interview Questions
3.5
 • 165 Interviews
Oracle Cerner Interview Questions
3.7
 • 158 Interviews
ServiceNow Interview Questions
4.1
 • 121 Interviews
Thomson Reuters Interview Questions
4.1
 • 115 Interviews
View all
Software Engineer
265 salaries
unlock blur

₹6.5 L/yr - ₹20.5 L/yr

Senior Software Engineer
171 salaries
unlock blur

₹11.4 L/yr - ₹30 L/yr

Technical Lead
167 salaries
unlock blur

₹8.2 L/yr - ₹35 L/yr

Software Engineering Specialist
130 salaries
unlock blur

₹19.1 L/yr - ₹44 L/yr

Software Engineer and Technical Lead
124 salaries
unlock blur

₹9 L/yr - ₹27.1 L/yr

Explore more salaries
Compare NICE with

Oracle

3.7
Compare

KPIT Technologies

3.4
Compare

Intellect Design Arena

3.9
Compare

Thomson Reuters

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