Upload Button Icon Add office photos

Filter interviews by

Atlassian Interview Questions, Process, and Tips for Experienced

Updated 24 Mar 2025

Top Atlassian Interview Questions and Answers for Experienced

View all 16 questions

Atlassian Interview Experiences for Experienced

Popular Designations

15 interviews found

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

I applied via Company Website and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How does internet works
  • Q2. HTTP codes SQL troubleshooting
Round 2 - Technical 

(1 Question)

  • Q1. SQL python java
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiations
  • Q2. Work shifts questions

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the most challenging project you have handled in your career?
  • Q2. How do you deal with low performer?
Round 2 - One-on-one 

(1 Question)

  • Q1. How do you measure project success?
  • Ans. 

    Project success can be measured by meeting project goals, staying within budget and timeline, and receiving positive feedback from stakeholders.

    • Meeting project goals and objectives

    • Staying within budget and timeline

    • Receiving positive feedback from stakeholders

    • Achieving desired outcomes and deliverables

    • Maintaining high team morale and engagement

  • Answered by AI

Senior Engineering Manager Interview Questions asked at other Companies

Q1. How do you ensure a payment does get credited to wrong employee account?
View answer (1)

Software Development Engineer II Interview Questions & Answers

user image Suraj Udayashankar (Suraj Uday)

posted on 7 Aug 2024

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

Graphql implementation

Round 2 - Coding Test 

System design questions : HLD and LLD

Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Strengths and weakness

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Create a tic tac toe game taking number of boards as a parameter
  • Ans. 

    Create a tic tac toe game with customizable number of boards.

    • Accept number of boards as a parameter

    • Create a 3x3 grid for each board

    • Implement logic to check for winning combinations on each board

  • Answered by AI
  • Q2. Create a feature flag component
  • Ans. 

    Feature flag component to control feature toggling in the application

    • Create a component that accepts a feature flag name as prop

    • Check if the feature flag is enabled or disabled

    • Render the component content based on the feature flag status

  • Answered by AI

Skills evaluated in this interview

Front end Engineer Interview Questions asked at other Companies

Q1. Pair Sum Problem Statement You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'. Note: Each pair should be ordered such that... read more
View answer (1)

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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Importance of rest api
  • Ans. 

    REST API is important for enabling communication between different systems and allowing them to exchange data and functionality.

    • REST API allows systems to communicate and exchange data in a standardized and scalable manner.

    • It enables integration between different applications and platforms, facilitating interoperability.

    • REST API simplifies the development process by providing a uniform interface for accessing and manip...

  • Answered by AI
  • Q2. What do you know abt rate limiting
  • Ans. 

    Rate limiting is a technique used to control the number of requests or actions a user or system can perform within a certain time frame.

    • Rate limiting helps prevent abuse, protect resources, and ensure fair usage.

    • It sets limits on the number of requests or actions allowed per user, IP address, or API key.

    • Rate limits can be defined based on time intervals, such as requests per second, minute, or hour.

    • When the limit is re...

  • Answered by AI
  • Q3. Troubleshoot with Har file
  • Ans. 

    Troubleshooting with Har file involves analyzing network traffic and identifying issues.

    • Use a tool like Chrome Developer Tools or Fiddler to generate a Har file

    • Open the Har file in a Har viewer to analyze the network requests and responses

    • Look for errors, slow response times, or missing resources

    • Check for DNS resolution issues, network connectivity problems, or server-side errors

    • Compare the Har file with expected behav...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on the given topics

Skills evaluated in this interview

Senior Enterprise Support Engineer Interview Questions asked at other Companies

Q1. What do you know abt rate limiting
View answer (1)

Get interview-ready with Top Atlassian Interview Questions

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SAAS Product Interview questions

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)

Jobs at Atlassian

View all
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 (62)
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)

Data Engineer Interview Questions & Answers

user image Poulami Majumder

posted on 24 Jan 2024

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

(1 Question)

  • Q1. From sql, Python, dsa

Data Engineer Interview Questions asked at other Companies

Q1. Next Greater Element Problem Statement You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater element, return -1. Input: T N arr[0]... read more
View answer (3)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2022. There were 2 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 - One-on-one 

(3 Questions)

  • Q1. What is ur IRR ?
  • Ans. 

    IRR stands for Internal Rate of Return, a financial metric used to evaluate the profitability of an investment.

    • IRR is a discount rate that makes the net present value of all cash flows from an investment equal to zero.

    • It is used to compare the profitability of different investment opportunities.

    • A higher IRR indicates a more profitable investment.

    • For example, if an investment has an IRR of 10%, it means that the investm...

  • Answered by AI
  • Q2. What kind of products have u handled ?
  • Ans. 

    I have handled a wide range of products in my career as a Group Product Manager.

    • Consumer electronics

    • Software applications

    • Mobile apps

    • E-commerce platforms

    • SaaS products

  • Answered by AI
  • Q3. How is ur ur culture
  • Ans. 

    Our culture is collaborative, innovative, and inclusive.

    • We prioritize teamwork and encourage open communication.

    • We value creativity and encourage employees to share their ideas.

    • We strive to create a welcoming and diverse environment for all employees.

    • We prioritize work-life balance and offer flexible schedules and remote work options.

    • We prioritize professional development and offer opportunities for growth and learning

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Atlassian only looked at revenue and exact match to their requirements, the hiring manager didn’t ask anything away from it and most of the JD was generic. So the match is only determined during the interview and don’t show personality

Group Product Manager Interview Questions asked at other Companies

Q1. Pharma industry insights. Impact of Covid and change in scenarios
Add answer

Atlassian Interview FAQs

How many rounds are there in Atlassian interview for experienced candidates?
Atlassian interview process for experienced candidates usually has 1-2 rounds. The most common rounds in the Atlassian interview process for experienced candidates are Technical, One-on-one Round and Coding Test.
How to prepare for Atlassian interview for experienced candidates?
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 for experienced candidates?

Some of the top questions asked at the Atlassian interview for experienced candidates -

  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.

Tell us how to improve this page.

Atlassian Interview Process for Experienced

based on 12 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 864 Interviews
Amdocs Interview Questions
3.7
 • 517 Interviews
Adobe Interview Questions
3.9
 • 235 Interviews
Salesforce Interview Questions
4.0
 • 230 Interviews
24/7 Customer Interview Questions
3.5
 • 176 Interviews
Chetu Interview Questions
3.3
 • 175 Interviews
AVASOFT Interview Questions
2.9
 • 165 Interviews
Dassault Systemes Interview Questions
4.0
 • 164 Interviews
Freshworks Interview Questions
3.5
 • 164 Interviews
View all

Atlassian Reviews and Ratings

based on 126 reviews

3.5/5

Rating in categories

3.2

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 126 Reviews and Ratings
Associate Data Engineer

Bangalore / Bengaluru

1-2 Yrs

Not Disclosed

Senior Engineering Manager

Bangalore / Bengaluru

11-15 Yrs

Not Disclosed

Explore more jobs
Software Engineer
136 salaries
unlock blur

₹20 L/yr - ₹68.8 L/yr

Senior Software Engineer
109 salaries
unlock blur

₹27.6 L/yr - ₹105 L/yr

Software Developer
104 salaries
unlock blur

₹22.7 L/yr - ₹89.4 L/yr

Sde1
57 salaries
unlock blur

₹28 L/yr - ₹86 L/yr

Software Development Engineer II
43 salaries
unlock blur

₹25 L/yr - ₹96 L/yr

Explore more salaries
Compare Atlassian with

Salesforce

4.0
Compare

Google

4.4
Compare

Amazon

4.0
Compare

Oracle

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