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 - 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)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

60 mins Karat round with a mix of general questions around the language and then 40mins of frontend tasks.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be quick with your Karat interview.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Karat interview system deaign
  • Q2. Karat interview coding question

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
-

I applied via Approached by Company and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Coding Test 

45 minutes Karat round,

Round 2 - Technical 

(1 Question)

  • Q1. Design Snake game
  • Ans. 

    Snake game is a classic arcade game where a player controls a snake to eat food and grow longer while avoiding collisions with walls and itself.

    • Create a grid-based game board where the snake can move in four directions (up, down, left, right)

    • Generate food randomly on the board for the snake to eat and grow in length

    • Implement collision detection to check if the snake hits the walls or itself

    • Update the game state continu...

  • Answered by AI
Round 3 - Coding Test 

Implement a data structure that provides capability to upvote, downvote and get content with maximum vote

Skills evaluated in this interview

Senior Backend Developer Interview Questions asked at other Companies

Q1. Design a admin dashboard for uber to show driver metrics like availability over an area
View answer (1)

Atlassian interview questions for popular designations

 Senior Software Engineer

 (9)

 Software Developer

 (6)

 Software Developer Intern

 (5)

 Software Engineer Intern

 (5)

 Technical Support Engineer

 (4)

 Data Engineer

 (3)

 Senior Data Engineer

 (3)

 Software Engineer

 (3)

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)

Get interview-ready with Top Atlassian Interview Questions

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Sql hard question sp
  • Q2. Coding easy question dsa

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)

Jobs at Atlassian

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

3 SIMPLE DSA questions

Round 2 - Technical 

(1 Question)

  • Q1. Simple DSA problem of DFS and BFS
  • Ans. 

    DFS and BFS are fundamental graph traversal algorithms used to explore nodes in a graph.

    • DFS (Depth First Search) explores as far as possible along each branch before backtracking. It uses a stack to keep track of nodes.

    • BFS (Breadth First Search) explores all the neighbor nodes at the present depth prior to moving on to the nodes at the next depth. It uses a queue to keep track of nodes.

    • Example: For a graph with nodes A...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Behaviour questions

Skills evaluated in this interview

Software Engineer Intern Trainee Interview Questions asked at other Companies

Q1. find average salary of employees from given table for each designation where employee age greater than 30
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is JVM and JDK ?
  • Ans. 

    JVM stands for Java Virtual Machine, which is a virtual machine that enables a computer to run Java programs. JDK stands for Java Development Kit, which is a software development kit used to develop Java applications.

    • JVM is responsible for executing Java bytecode and translating it into machine code.

    • JDK includes tools for developing, debugging, and monitoring Java applications.

    • JDK contains JRE (Java Runtime Environment...

  • Answered by AI
  • Q2. What is heap memory ?
  • Ans. 

    Heap memory is a region of a computer's memory that is used for dynamic memory allocation.

    • Heap memory is allocated at runtime and can be accessed randomly.

    • It is used for storing objects and data structures that need to be dynamically allocated and deallocated.

    • Heap memory is managed by the programmer and not automatically by the system.

    • Examples of heap memory usage include creating objects in Java using the 'new' keywor

  • Answered by AI

Skills evaluated in this interview

Enterprise Support Engineer Interview Questions asked at other Companies

Q1. What is the OSI layer and explain the work of each layer.
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How you resolve a DNS query
  • Ans. 

    To resolve a DNS query, you can use various methods such as checking the DNS cache, querying authoritative DNS servers, and troubleshooting network connectivity.

    • Check the local DNS cache for a matching entry

    • Query the recursive DNS server configured on the device

    • If the recursive server doesn't have the answer, it queries authoritative DNS servers

    • Troubleshoot network connectivity issues if DNS resolution fails

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn more about Networking

Skills evaluated in this interview

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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

Coding round of 2 questions of medium level

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)

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.

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.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
Zoho Interview Questions
4.3
 • 516 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
View all

Atlassian Reviews and Ratings

based on 123 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 123 Reviews and Ratings
Senior Software Engineer, Transactional Data Platform

Bangalore / Bengaluru

6-9 Yrs

₹ 20-110 LPA

Senior Data Engineer

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Senior Software Engineer- Reliability

Bangalore / Bengaluru

3-11 Yrs

₹ 15-76.6 LPA

Explore more jobs
Software Engineer
166 salaries
unlock blur

₹16.5 L/yr - ₹43.6 L/yr

Senior Software Engineer
109 salaries
unlock blur

₹21.7 L/yr - ₹85 L/yr

Software Developer
105 salaries
unlock blur

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