Skill Assessment: Mindset Questions - Questions about your experience in general. Exploratory Testing - General Exploratory Testing task for a feature in Confluence. Very easy. Need to remember they are looking to cover all aspects and not just feature testing or regression testing. Automation Framework. - Easy to implement if you know any language and have familiarity with Selenium Webdriver. I cleared the skill assessment with ease. The technical interview was generally a good experience but there were a few things that I didn't really think matched my expectations. The interview had 3 phases : 1. General Questions - Focussed around current experience and also around Coaching Devs, I did reasonably okay in it as I had prior experience in coaching devs, but honestly, I don't look forward to wearing 500 hats in my job, i like a specialist role. 2. Code Review - It had a code snippet where I was expected to find bugs in the code, expected to find 3 , I found 2 before the time ran out. This was a good exercise and something I hadn't experienced in past. I am happy I did okay here. 3. Technical Questions- Mostly around non-functional testing like Performance and Security. They were interested to know how I can influence the developers into thinking of these aspects from the beginning. I tried my best but honestly speaking, I knew I am not a good fit here because I am not a coach. Generally speaking, I had expected a few questions around the responses I had provided in the Skill Assessment, in particular from the mindset exercise, because the skill assessment clearly mentioned there will be questioning around them, which didn't happen. This is probably very important for anyone who applies at Atlassian: The job title can somewhat confuse you into thinking there is much hands on as an Engineering role would entail. Quality Engineers for Atlassian means you work as a consultant or a coach expected to do no hands-on testing or automation. Although, I acknowledge that the recruiter mentioned to me during my initial screening that this is not a hands-on role but I wanted to know this from the Quality engineers themselves, hence I kept going through the initial phases of the interview. If I am being utterly honest with you, I knew it wasn’t meant to be because I consider myself to be more hands-on and hypothetically speaking, it felt like I am part of a football team where I am selected only to spend my time on the bench forever. Certainly not for me. I wish my honest response here helps anyone who interviews for QE roles at Atlassian.
Sr Qa Engineer Interview Questions
5,813 sr qa engineer interview questions shared by candidates
Round 4 F2F: Problem Solving 1. Let's talk about Exceptions. What are exceptions and which exceptions you've actively used so far? 2. An ArrayIndexOutOfBound Exception has happened. How would you solve it? 3. If you're not allowed to touch the '<=' operator for ArrayIndexOutOfBound, what will you do to solve it? 4. What are checked and unchecked exceptions? 5. Given an array arr[] = {6, 0, -4, 4, 8}. Irrespective of the signs for the given integers. Find the count of unique values. The array may grow further. Ans: public static void main(String[] args) { int arr[] = {-6, 0, -4, 4, 8}; int len = arr.length; Set<Integer> mySet = new HashSet<Integer>(); for(int i=0; i<len; i++) { mySet.add(Math.abs(arr[i])); } System.out.println(mySet.size()); } 6. Why Visa?
Given a sample application, how would you test it?
Here are some of the questions that were asked: Java Program to reverse each String in a sentence = " Today is a Happy Day" , Output should be : " yadoT si a yppaH yaD". - Java program - if String= " ABC DEF" , output should be : A D B E C F - Questions on TestNG and the workflows, the order of execution with some scenarios - Why Web services and few questions on REST - what is the process followed in your project- say suppose we get any new requirements and then....??? Explain - Java - String, String Buffer, String Builder - Suppose String A= "ABCD", then A+test - does this give compile error. How string is immutable - Explain on Agile. Why Agile is better than Waterfall - Questions on Unix & SQL - Click on a button and nothing happens - what do you verify to debug - Gave a scenario and asked to identify the optimum scenarios.
What is blackbox and white box testing
Complete this sample api rest request and fill in the blanks
1) String and collections questions in Java 2) Basic selenium commands
Project related questions also they have asked
Basic Db, API automation, testNg in depth, core java fundamentals, selenium concepts and automation framework related questions
Describe your framework. It takes a lot of imagination to ask this question.
Viewing 4531 - 4540 interview questions