J'ai postulé en ligne. Le processus a pris plus de 2 mois. J'ai passé un entretien chez ServiceNow (Singapour) en févr. 2021
Entretien
Worst Interview Experience :
Four Technical round and 1 managerial round after that no response from Recruiter.
Please respect candidate time if someone has spent 7-8 hours then atleast a mail with feedback.
My Request to all QA Community person, please do not go for Interview in Service now
J'ai postulé en ligne. Le processus a pris 1 semaine. J'ai passé un entretien chez ServiceNow en juill. 2025
Entretien
It has multiple stages.
1st Tech round: 70% java 30 % testing - Very Good experience - Questions which are relevant to QA
2nd Tech round: Theory exam. Please be prepared for bookish questions. Questions will be fired on you like MCQs. Interviewer is using ChatGPT. He is prioritising his answers over approach which is easy, faster, and standard.
J'ai postulé en ligne. Le processus a pris 4 jours. J'ai passé un entretien chez ServiceNow en juin 2025
Entretien
Interview was for 1 hour each and technical. First round level was similar among questions, second round coding question was difficult but rest of it was same as first round. Level of questions in round 2 was not consistent. The only focus was if you can solve the coding problem.
Questions d'entretien [1]
Question 1
Find all combinations of a given string, write xpath for live website, palindrome, second largest number in an array, write test cases for a scenario
J'ai postulé en ligne. J'ai passé un entretien chez ServiceNow (Hyderâbâd) en mai 2024
Entretien
Asked very difficult questions, like leet code hard problem, advance Java questions. For automation engineer related technologies questions didn't asked. 1st time i have faced different interview process, other than worked technologies
Questions d'entretien [9]
Question 1
Leet Code - Write code and explain for "Minimum Time to Complete Trips"
Anything wrong in this code and Explain?
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
public class ConcurrentModificationExample {
public static void main(String[] args) {
List numbers = new ArrayList<>();
numbers.add(1);
numbers.add(2);
numbers.add(3);
Iterator iterator = numbers.iterator();
while (iterator.hasNext()) {
Integer number = iterator.next();
if (number.equals(2)) {
numbers.remove(number); }
}
}
}