Upload Button Icon Add office photos

Filter interviews by

Atlassian SDE-2 Interview Questions, Process, and Tips

Updated 15 Mar 2024

Top Atlassian SDE-2 Interview Questions and Answers

  • Q1. K Most Frequent Words You have been given an array/list 'WORDS' of 'N' non-empty words, and an integer 'K'. Your task is to return the 'K' most frequent words sorted by t ...read more
  • Q2. System Design Question Tagging system across all Atlassian products (Jira, Confluence, Bitbucket). Tag addition/update/delete in one product should reflect across all oth ...read more
  • Q3. Basic HR questions Atlassian has 5 values. Situational questions will be asked around those 5 values if you've demonstrated them in your past or not.

Atlassian SDE-2 Interview Experiences

2 interviews found

SDE-2 Interview Questions & Answers

user image komal kungwani

posted on 15 Mar 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Leetcode Interview Question company tag atlassian. Some modifications of those
Round 2 - Technical 

(1 Question)

  • Q1. Design a web crawler
  • Ans. 

    Design a web crawler to fetch and index web pages

    • Start by defining the scope of the crawler (e.g. which websites to crawl)

    • Implement a system to fetch web pages using HTTP requests

    • Parse the HTML content to extract relevant information (e.g. links, text)

    • Store the extracted data in a database or index for later retrieval

    • Implement a scheduling mechanism to prioritize and manage the crawling process

  • Answered by AI

Skills evaluated in this interview

SDE-2 Interview Questions & Answers

user image CodingNinjas

posted on 20 May 2022

I was interviewed in Mar 2022.

Round 1 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

LLD Round (but with machine coding sort of expectations in whatever that can be done in 60 mins)

  • Q1. Design Question

    Snake game

  • Ans. 

    Design a snake game

    • Use a 2D array to represent the game board

    • Keep track of the snake's position and direction

    • Handle user input to change the snake's direction

    • Update the snake's position and check for collisions with walls or itself

    • Add food to the board and handle eating it to grow the snake

    • Keep track of the score and display it to the player

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

DSA 

  • Q1. K Most Frequent Words

    You have been given an array/list 'WORDS' of 'N' non-empty words, and an integer 'K'. Your task is to return the 'K' most frequent words sorted by thei...

  • Ans. 

    Given an array of words and an integer k, return the k most frequent words sorted by frequency.

    • Use a hashmap to count the frequency of each word

    • Use a priority queue to keep track of the k most frequent words

    • Sort the priority queue based on frequency and lexicographical order

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. System Design Question

    Tagging system across all Atlassian products (Jira, Confluence, Bitbucket). Tag addition/update/delete in one product should reflect across all other products. Design DB schema and Hi...

  • Ans. 

    Design a tagging system across Atlassian products for seamless tag synchronization.

    • Create a centralized tag management service

    • Design a database schema to store tags and their associations with products

    • Implement event-driven architecture to propagate tag changes across products

    • Use a message broker for asynchronous communication between services

    • Ensure data consistency and handle conflicts during tag updates

    • Consider scala

  • Answered by AI
Round 4 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

Managerial Round (Some questions on projects and general situation based questions)

  • Q1. Project Based Question

    Questions on my past projects (Not extreme deep dive, but a very high level overview etc.)
    Situational based questions (ex-what will you do if you have a conflict with other members et...

  • Ans. 

    The interview question is about past projects and situational-based questions.

    • Provide a high-level overview of past projects

    • Explain the role and responsibilities in each project

    • Highlight achievements and challenges faced

    • Discuss how conflicts with team members were resolved

    • Emphasize effective communication and collaboration skills

  • Answered by AI
Round 5 - HR 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

Values round

  • Q1. Basic HR questions

    Atlassian has 5 values. Situational questions will be asked around those 5 values if you've demonstrated them in your past or not.

  • Ans. 

    Atlassian has 5 values. Situational questions will be asked around those 5 values if you've demonstrated them in your past or not.

    • Be the change you seek

    • Don't #@!% the customer

    • Play, as a team

    • Build with heart and balance

    • Be the CEO of your own career

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 2 in BangaloreEligibility criteriaNot aware of any such thing as I applied as experienced person.Atlassian interview preparation:Topics to prepare for the interview - Data Structures, System Design, Low level design, Machine codingTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Practised topic wise leetcode questions from basics
Tip 2 : Watched so many system design mock interviews
Tip 3 : Did mock interviews with friends for DSA and System design rounds.

Application resume tips for other job seekers

Tip 1 : Single page resume.
Tip 2 : Get it proof read by friends and professionals and take feedback.

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE-2 Interview Questions Asked at Other Companies

asked in Walmart
Q1. Maximum Frequency NumberNinja is given an array of integers that ... read more
asked in Atlassian
Q2. K Most Frequent WordsYou have been given an array/list 'WORDS' of ... read more
Q3. Design Question“Rent a Ride”  As a customer to Rent a Ride y ... read more
Q4. Reverse StringYou are given a string ‘S’. You are also given ‘M’ ... read more
asked in ShareChat
Q5. Find Square root of an integerYou are given an integer ‘A’. Your ... read more

Interview questions from similar companies

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

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA.

  • Q1. LRU Cache Implementation

    Design and implement a data structure for Least Recently Used (LRU) cache to support the foll...

  • Ans. 

    Structure of an LRU Cache :

    1) In practice, LRU cache is a kind of Queue — if an element is reaccessed, it goes to the end of the eviction order
    2) This queue will have a specific capacity as the cache has a limited size. Whenever a new element is brought in, it is added at the head of the queue. When eviction happens, it happens from the tail of the queue.
    3) Hitting data in the cache must be done in constant time, which...

  • Answered by CodingNinjas
  • Q2. Minimum Number of Platforms

    You have been given two arrays, 'AT' and 'DT', representing the arrival and departure times of all trains that reach a railway station.

    Your task is to find th...

  • Ans. 

    The idea is to use the sorted arrival and departure times of trains and count the total number of platforms needed at a time . Maintain a counter to count the total number of trains present at the station at any point. 
    If the train is scheduled to arrive next, increase the counter by one and update the minimum platforms needed if the count is more than the minimum platforms needed so far.
    If the train is scheduled ...

  • Answered by CodingNinjas
Round 2 - Face to Face 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

Technical Interview round with DSA based questions.

  • Q1. Reverse a linked list
    Input Format :
    The first line of input contains a single int...
  • Ans. 

    This can be solved both: recursively and iteratively.
    The recursive approach is more intuitive. First reverse all the nodes after head. Then we need to set head to be the final node in the reversed list. We simply set its next node in the original list (head -> next) to point to it and sets its next to NULL. The recursive approach has a O(N) time complexity and auxiliary space complexity.
    For solving the question is c...

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaAbove 1 years of experience24/7 customer private limited interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

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
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Star pattern questions
  • Q2. Hashing implementation
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
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Git workflow and xpath. Reverse a string
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

Atlassian Interview FAQs

How many rounds are there in Atlassian SDE-2 interview?
Atlassian interview process usually has 2 rounds. The most common rounds in the Atlassian interview process are Technical.
What are the top questions asked in Atlassian SDE-2 interview?

Some of the top questions asked at the Atlassian SDE-2 interview -

  1. Design a web craw...read more
  2. Leetcode Interview Question company tag atlassian. Some modifications of th...read more

Tell us how to improve this page.

SDE-2 Interview Questions from Similar Companies

TCS SDE-2 Interview Questions
3.7
 • 3 Interviews
Zoho SDE-2 Interview Questions
4.3
 • 1 Interview
View all
Atlassian SDE-2 Salary
based on 22 salaries
₹25 L/yr - ₹75 L/yr
36% more than the average SDE-2 Salary in India
View more details
Software Engineer
124 salaries
unlock blur

₹15.7 L/yr - ₹58.2 L/yr

Software Developer
97 salaries
unlock blur

₹20 L/yr - ₹85 L/yr

Senior Software Engineer
96 salaries
unlock blur

₹21.7 L/yr - ₹79.4 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.1
Compare

Google

4.4
Compare

Amazon

4.1
Compare

Freshworks

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview