Upload Button Icon Add office photos

Filter interviews by

Atlassian Sdet Automation Test Engineer Interview Questions and Answers

Updated 6 May 2023

Atlassian Sdet Automation Test Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2022. There were 3 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 

Logic based questions

Round 3 - Coding Test 

Tough and easy at the same time

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode

Interview questions from similar companies

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

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

General aptitude and out put realted questions

Round 2 - Coding Test 

Face to face dsa and string manipulations

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a java program to convert the first letter of each word in upper case
  • Ans. 

    Java program to convert first letter of each word to upper case

    • Split the input string into an array of words

    • Iterate through each word and capitalize the first letter

    • Join the words back together into a single string

  • Answered by AI
  • Q2. Write a java program to remove the duplicate characters from a string
  • Ans. 

    Java program to remove duplicate characters from a string

    • Create a HashSet to store unique characters

    • Iterate through the string and add each character to the HashSet

    • Construct a new string by appending characters from the HashSet

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Coding Test 

Write a code for Singleton pattern?

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

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Frequency array, java collection, missing number

Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jul 2023. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Networking related questions
  • Q2. Questions related to file transfer between multiple systems
Round 2 - Technical 

(2 Questions)

  • Q1. Multithreading questions
  • Q2. Related to multiple thread synchronization, lock etc
Round 3 - Coding Test 

Space and time complexities were asked for program

Round 4 - Technical 

(1 Question)

  • Q1. Managerial round

Sde1 Interview Questions & Answers

UKG user image Anonymous

posted on 7 Aug 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Coding Test 

Aptitude and coding round, one coding question and others are computer fundamentals

Round 2 - Technical 

(2 Questions)

  • Q1. Return true if Subarray is present whose sum is 0
  • Q2. Project, oops, dbms
Round 3 - Technical 

(2 Questions)

  • Q1. Subarray sun equal to k
  • Q2. Project, oops, dbms
Round 4 - HR 

(1 Question)

  • Q1. Did not got slected i answered all still
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Git workflow and xpath. Reverse a string

I applied via Referral and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - Technical 

(8 Questions)

  • Q1. Sort the list of a given array of strings
  • Ans. 

    Sort a given array of strings

    • Use built-in sorting functions in programming languages

    • Implement sorting algorithms like bubble sort, merge sort, etc.

    • Consider case sensitivity and special characters

  • Answered by AI
  • Q2. Maximum number of repeating characters in a string
  • Ans. 

    The maximum number of repeating characters in a string needs to be determined.

    • Iterate through each character in the string and keep track of the count of consecutive repeating characters.

    • Update the maximum count whenever a new maximum is found.

    • Return the maximum count at the end of the iteration.

  • Answered by AI
  • Q3. Type script and java script arrow function loops if else condition
  • Ans. 

    Explaining type script and java script arrow function loops with if else condition.

    • TypeScript and JavaScript both support arrow functions for concise syntax.

    • Arrow functions can be used in loops to simplify code.

    • If-else conditions can be used with arrow functions to add logic.

    • Example: const numbers = [1, 2, 3]; numbers.forEach(num => {if(num % 2 === 0) {console.log(num + ' is even');} else {console.log(num + ' is odd');

  • Answered by AI
  • Q4. Parallel browser testing, test ng, oops concept
  • Q5. Scaled agile framework related questions
  • Q6. Selenium and cypress difference ? How to choose best tool
  • Ans. 

    Selenium is widely used for web automation while Cypress is a newer tool with better performance and debugging capabilities.

    • Selenium supports multiple programming languages while Cypress only supports JavaScript.

    • Cypress has a built-in test runner and debugger while Selenium requires third-party tools.

    • Selenium is better for cross-browser testing while Cypress is better for end-to-end testing.

    • Choose Selenium for larger a...

  • Answered by AI
  • Q7. Comparator and comparable difference?
  • Ans. 

    Comparator and Comparable are interfaces used for sorting objects in Java.

    • Comparator interface is used to sort objects based on custom criteria.

    • Comparable interface is used to sort objects based on their natural order.

    • Comparator interface has two methods: compare() and equals().

    • Comparable interface has one method: compareTo().

  • Answered by AI
  • Q8. Fail-safe and fail-fast iterator?

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well concept of automation,java script and oops

Skills evaluated in this interview

Round 1 - Technical 

(4 Questions)

  • Q1. What is React Context?
  • Ans. 

    React Context is a feature in React that allows data to be passed down the component tree without having to pass props manually.

    • Context provides a way to share values like themes, user data, etc. across the component tree.

    • It avoids prop drilling, where props are passed down multiple levels to reach a component that needs them.

    • Context consists of two parts: a Provider component that provides the data and a Consumer comp...

  • Answered by AI
  • Q2. What is meant by closure in javascript?
  • Ans. 

    Closure is a function that has access to its parent scope, even after the parent function has closed.

    • Closure is created when a function is defined inside another function.

    • The inner function has access to the outer function's variables and parameters.

    • The outer function returns the inner function, which can be called later with the parent scope still accessible.

    • Closures are used for data privacy, event handlers, and call

  • Answered by AI
  • Q3. What are the complicated tasks you've done exceeding everyone's expectation?
  • Q4. Algorithm to convert roman numeral to numbers?
  • Ans. 

    Algorithm to convert roman numeral to numbers

    • Create a dictionary to map roman numerals to their corresponding values

    • Iterate through the roman numeral string from right to left

    • If the current value is less than the previous value, subtract it from the total

    • If the current value is greater than or equal to the previous value, add it to the total

    • Return the total

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. What is React context?
  • Ans. 

    React context is a way to pass data through the component tree without having to pass props down manually at every level.

    • Context provides a way to share values like a theme or user data across the component tree.

    • It avoids prop drilling and makes the code cleaner and more maintainable.

    • Context consists of two parts: a Provider component that provides the data and a Consumer component that consumes the data.

    • Context can be...

  • Answered by AI
  • Q2. What is abstract class in javascript?
  • Ans. 

    There is no abstract class in JavaScript.

    • JavaScript does not have a built-in abstract class concept.

    • However, it is possible to create abstract classes using functions and prototypes.

    • Abstract classes are used as blueprints for other classes to inherit from.

    • They cannot be instantiated on their own and must be extended by a subclass.

    • Abstract methods can be defined in the abstract class and must be implemented in the subcl

  • Answered by AI
  • Q3. What is meant by function overloading and function overriding?
  • Ans. 

    Function overloading is when multiple functions have the same name but different parameters. Function overriding is when a subclass provides its own implementation of a method that is already present in the parent class.

    • Function overloading is used to provide multiple ways to call a function with different parameters.

    • Function overriding is used to provide a specific implementation of a method in a subclass.

    • Function ove...

  • Answered by AI
  • Q4. Implement counter in react app
  • Ans. 

    Implement a counter in a React app

    • Create a state variable to hold the count

    • Render the count in the UI

    • Add buttons to increment and decrement the count

    • Update the state variable on button click

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic concepts in js was asked. JS classes questions was also asked

Skills evaluated in this interview

Atlassian Interview FAQs

How many rounds are there in Atlassian Sdet Automation Test Engineer interview?
Atlassian interview process usually has 3 rounds. The most common rounds in the Atlassian interview process are Resume Shortlist, Aptitude Test and Coding Test.

Tell us how to improve this page.

Atlassian Sdet Automation Test Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Software Engineer
162 salaries
unlock blur

₹20.6 L/yr - ₹80 L/yr

Senior Software Engineer
103 salaries
unlock blur

₹21.7 L/yr - ₹85 L/yr

Software Developer
100 salaries
unlock blur

₹21 L/yr - ₹89.5 L/yr

Sde1
55 salaries
unlock blur

₹26 L/yr - ₹86 L/yr

Software Development Engineer II
37 salaries
unlock blur

₹27.2 L/yr - ₹93 L/yr

Explore more salaries
Compare Atlassian with

Salesforce

4.0
Compare

Google

4.4
Compare

Amazon

4.1
Compare

Freshworks

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