Casual Past Experience Talk & One Programming Question
Senior Software Development Engineer In Test Interview Questions
389 senior software development engineer in test interview questions shared by candidates
Round 1: SDET Director It wend pretty well. Interviewer was knowledgeable and asked the questions around past projects and managerial skill Round 2: SDE Director Focus was on algorithmic questions. 1. Print tree in zigzag manner 2. in 2D-array if elements are in increasing order in Row and column then find the particular element Interviewer was calm and cool. I couldn't give the answer for questions as I was not prepared well I was happy with the interview experience till this point Round 3 : Sr SDET Manager Was asked mainly around the processes followed in my company and couple of random questions. In this round interviewer was talking more than me. Round 4 : Sr SDET Manager Interviewer had some questions and was expecting the same answers which he had in mind. I was expecting maturity level for person with such designation And as usual no feedback from HR team.
to write a tree traversal algorithm side to side
Selenium questions Difference between driver.quit() and driver.close(). Difference between implicit wait() and explicit wait () in Java. Describe the Automation framework. what is the output of these two print statements in java? System.out.println("Hello, World!"+ 12 +150); System.out.println(12 + 150 "Hello, World!"); Replace or create a new json object in the array? Array [ { "name" : "bob", "status" : "Active" // change key "status" to output and "Active" to true -- something like that } ]
1) find pair in a array summing upto to a given sum - Hacker rank
Tell me about your experience in this area
The most disappointing part for me, was the questions were very thoughtful. While challenging, I had a lot of respect for their approach.
02. Design & Code for a poker game where it consists of few tables and each table consists of 6 chairs. And the system has to allocate the available seat to the participants in queue. And each participant will be allocated 100 poker chips.
In a language of your choice, please provide a solution for the following problem. Problem: Given a sorted array of non-zero integers, remove the duplicate elements from the array and return the number of unique elements found. At the end of your algorithm, the array should contain unique elements. If the number of unique elements is less than the size of the array, fill the remaining indices with 0. For example: ex. Input - arr[] = {1, 2, 2, 3} ex. Output - arr[] = {1, 2, 3, 0} - return 3 ex. Input - arr[] = {1, 1, 1, 1} ex. Output - arr[] = {1, 0, 0, 0} - return 1 You should include your algorithm in the removec Duplicates method, whose inputs are the array and the length of the array.
Questions related to Data structure, LinkedList, Selenium, TestNG Problem 1: for given integer array, find the maximum number which is formed using these integers i.e { 2,20,31,4,6,8} ==> 86431220 Problem 2: for a given integer array {4, 3, 5, 5, 5, 1, 3, 0, 2, 0} , Find maximum occurrence of number and sort it according to decreasing order i.e { 5=3, 3=2, 0=2, 4=1, 1=1} Question 3: write the cases for deleting an element from Singly linked list and doubly linked list Other question like write the cases for Payment Gateway etc
Viewing 41 - 50 interview questions