Upload Button Icon Add office photos

Filter interviews by

Atlassian Interview Questions, Process, and Tips

Updated 16 Jan 2025

Top Atlassian Interview Questions and Answers

View all 62 questions

Atlassian Interview Experiences

Popular Designations

88 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

4 questions been asked in coding test

Round 2 - Technical 

(1 Question)

  • Q1. DSA been asked in the interview
Round 3 - HR 

(1 Question)

  • Q1. How do u deal with the members who are having conflict of interest

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)

Software Developer Interview Questions & Answers

user image Andrew Chang

posted on 17 Oct 2024

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

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. Motivation behind the move
  • Ans. 

    I was motivated to move to this role because of my passion for coding and desire to work on challenging projects.

    • Passion for coding and technology

    • Desire to work on challenging projects

    • Opportunity for growth and learning

    • Interest in the company's products or services

  • Answered by AI

Top Atlassian Software Developer Interview Questions and Answers

Q1. Structurally Unique Binary Trees of Dragon Balls Goku has ‘N’ Dragon Balls, where each Dragon Ball is unique. The ith Dragon Ball has ‘i’ stars on it, meaning the first Dragon Ball has 1 star, the second has 2 stars, and so on. Gohan needs ... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Atlassian Interview Questions and Answers for Freshers
illustration image
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Design and implement snake game
  • Ans. 

    Snake game involves controlling a snake to eat food and grow in size without hitting walls or itself.

    • Create a grid system to represent the game board

    • Implement logic for snake movement and growth

    • Generate food randomly on the board for the snake to eat

    • Handle collision detection for walls and snake body

    • Keep track of score and game over conditions

  • Answered by AI

Skills evaluated in this interview

Senior Engineer Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (57)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

3 coding question in 1:30 hr
2 medium + 1 hard
1- greedy
2- binary search, prefix sum
3- dp (too hard)

Round 2 - One-on-one 

(1 Question)

  • Q1. Low level design type question
Round 3 - One-on-one 

(1 Question)

  • Q1. Hiring manager round. Asked project related questions plus basic hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - confident, clear concept, project knowledge

Top Atlassian Software Developer Intern Interview Questions and Answers

Q1. Ninja and His Meetings Problem Statement Ninja has started a new startup with a single conference room available for meetings. Given an array/list MEETINGS of consecutive appointment requests, Ninja must decide which meetings to accept. Sin... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Atlassian interview questions for popular designations

 Senior Software Engineer

 (9)

 Software Developer

 (6)

 Software Engineer Intern

 (5)

 Software Developer Intern

 (5)

 Technical Support Engineer

 (4)

 Software Engineer

 (3)

 Senior Data Engineer

 (3)

 Data Engineer

 (3)

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Strong consistency vs eventual consistency
  • Ans. 

    Strong consistency ensures that all replicas of data are updated synchronously, while eventual consistency allows for temporary inconsistencies.

    • Strong consistency guarantees that all clients see the same data at the same time.

    • Eventual consistency allows for temporary inconsistencies but eventually all replicas will converge to the same state.

    • Strong consistency is often used in systems where data integrity is critical, ...

  • Answered by AI
  • Q2. Calculate the size of the file system
  • Ans. 

    Calculating the size of a file system

    • Determine the total size of all files and directories within the file system

    • Include the size of all subdirectories and their contents

    • Consider the size of metadata and file system overhead

    • Use appropriate tools or commands to gather the necessary information

  • Answered by AI

Skills evaluated in this interview

Senior Developer Interview Questions asked at other Companies

Q1. What is your current CTC and what is your expected CTC?
View answer (1)

Get interview-ready with Top Atlassian Interview Questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium - Hard DSA Problem they ask

Top Atlassian Software Developer Interview Questions and Answers

Q1. Structurally Unique Binary Trees of Dragon Balls Goku has ‘N’ Dragon Balls, where each Dragon Ball is unique. The ith Dragon Ball has ‘i’ stars on it, meaning the first Dragon Ball has 1 star, the second has 2 stars, and so on. Gohan needs ... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Jobs at Atlassian

View all

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 asked at other Companies

Q1. Maximum Frequency Number Problem Statement Given an array of integers with numbers in random order, write a program to find and return the number which appears the most frequently in the array. If multiple elements have the same maximum fre... read more
View answer (5)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Binary search to get left and right index of an element in a sorted array
  • Ans. 

    Binary search algorithm can be used to find the left and right index of an element in a sorted array.

    • Initialize left and right pointers to 0 and length-1 respectively.

    • While left <= right, calculate mid index and compare element with array[mid].

    • If element is found, update left and right pointers accordingly for left and right index.

    • If element is not found, adjust left or right pointer based on comparison with array[mid]

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Problem Solving from leetcode easy to medium should be good enough.
For Python - Do questions on intervals
For Sql - mostly lead/ lag and other window functions should be good enough

Skills evaluated in this interview

Senior Data Engineer Interview Questions asked at other Companies

Q1. Write a query to get the customer with the highest total order value for each year, month. [Note: Order table is different and Customer table is different. Order_ID and Customer_ID are the PK of the table with Oid from Customer table being ... read more
View answer (2)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium questions, related to voting

Round 2 - Technical 

(1 Question)

  • Q1. System design for tagging system
  • Ans. 

    Design a system for tagging system

    • Consider scalability and performance requirements

    • Use a unique identifier for each tag

    • Implement a search functionality for tags

    • Ensure data consistency and integrity

    • Consider security measures to prevent unauthorized access

  • Answered by AI

Skills evaluated in this interview

Principal Engineer Interview Questions asked at other Companies

Q1. what technique did you use to understand the root cause of the problem and isolate the specific task or process that needed attention
View answer (3)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Previous projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Projects on ml

Internship Trainee Interview Questions asked at other Companies

Q1. Tell about your UG project? How will you design a table for 1 tonne load and what are all the consideration needed for it? Tell the Equations you know in strength of Materials? What are manufacturing processes involved to fabricate ball bea... read more
View answer (2)
Contribute & help others!
anonymous
You can choose to be anonymous

Atlassian Interview FAQs

How many rounds are there in Atlassian interview?
Atlassian interview process usually has 2-3 rounds. The most common rounds in the Atlassian interview process are Coding Test, Technical and One-on-one Round.
How to prepare for Atlassian interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Atlassian. The most common topics and skills that interviewers at Atlassian expect are JIRA, SAN, Agile, Python and Product Management.
What are the top questions asked in Atlassian interview?

Some of the top questions asked at the Atlassian interview -

  1. Difference between git and Mercurial, How do you resolve merge conflicts, How d...read more
  2. Take any example in ticket closing and explain how will you do hypothesis testi...read more
  3. How will you optimize ticket closing proc...read more
How long is the Atlassian interview process?

The duration of Atlassian interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

JOBS

Atlassian

No Jobs

SALARIES

Siemens EDA

INTERVIEWS

DBS Bank

No Interviews

DESIGNATION

SALARIES

AlphaSense

SALARIES

AlphaSense

INTERVIEWS

Mentor Graphics

No Interviews

INTERVIEWS

Siemens EDA

No Interviews

SALARIES

DBS Bank

Tell us how to improve this page.

Atlassian Interview Process

based on 82 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
View all

Atlassian Reviews and Ratings

based on 122 reviews

3.6/5

Rating in categories

3.3

Skill development

4.0

Work-life balance

4.1

Salary

3.1

Job security

3.5

Company culture

3.2

Promotions

3.3

Work satisfaction

Explore 122 Reviews and Ratings
Senior Support Engineer

Bangalore / Bengaluru

8-14 Yrs

Not Disclosed

Senior Engineering Manager

Bangalore / Bengaluru

10-15 Yrs

Not Disclosed

Senior Backend Software Engineer

Remote

6-11 Yrs

Not Disclosed

Explore more jobs
Software Engineer
166 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
109 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
105 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sde1
55 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer II
37 salaries
unlock blur

₹0 L/yr - ₹0 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