Upload Button Icon Add office photos

Atlassian

Compare button icon Compare button icon Compare

Filter interviews by

Atlassian Software Engineer Interview Questions and Answers

Updated 30 Sep 2024

Atlassian Software Engineer Interview Experiences

3 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
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Sep 2023. There were 6 interview rounds.

Round 1 - Coding Test 

3rd party coding round

Round 2 - Coding Test 

JS coding round. Focused on JS fundamentals and problem solving.

Round 3 - Coding Test 

React coding round. Developing a UI

Round 4 - System Design 

(1 Question)

  • Q1. System design round
Round 5 - One-on-one 

(1 Question)

  • Q1. Values Round. Focused on instances from life reflecting Atlassian values.
Round 6 - One-on-one 

(1 Question)

  • Q1. Managerial Round

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Coding Test 

The coding test involved 3 DSA questions and I had 90 min to solve those. In terms of difficulty it would say they were simillar to Leetcode Medium

Round 2 - One-on-one 

(1 Question)

  • Q1. DSA question abiut how to store different pages and efficiently manage memory.
  • Ans. 

    Efficient memory management for storing different pages involves data structures like page tables and algorithms for allocation.

    • Use page tables to map virtual addresses to physical memory locations.

    • Implement algorithms like Least Recently Used (LRU) for page replacement.

    • Consider using a linked list or hash map for quick access to pages.

    • Utilize memory pools to manage fixed-size memory blocks for pages.

    • Example: In a web ...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. The HR interview revolved around my Tech Lead position in a project I was involved in college

Interview Preparation Tips

Interview preparation tips for other job seekers - Pay attention to what the manager says are the requirements for getting a PPO

Top trending discussions

View All
Interview Hub
6d (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Atlassian?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic oop
  • Q2. Previous projects and walktrough of one of the project, if any
  • Q3. Basic English test on a computer

Interview Preparation Tips

Interview preparation tips for other job seekers - The first step of the interview is the basic communication skills, which is taken on computer, try to listen carefully, most of the questions are only about what you have comprehend from the automated voice when played over.

OOP is very basic, they may ask some real life examples.

If you have worked previously, they may ask you about one of your projects. What technologies have you used ans why.

Interview Questionnaire 

1 Question

  • Q1. Oops programming,SQL server Database

What are the roles & responsibilities of a Software Engineer at Atlassian?

Software Development

  • Design and build web frontend systems and tools
  • Develop high-quality, scalable, and testable client code

Read full roles & responsibilities

I applied via Approached by Company and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is difference between abstract class and interface?

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about java and object oriented programming programming.

Skills evaluated in this interview

Atlassian HR Interview Questions

9 questions and answers

Q. Tell me about a time when you had to manage a high performer?
Q. What happens when you click on google.com?
Q. Tell me about a time when things didn't go as planned.

Interview Questionnaire 

9 Questions

  • Q1. System design of traffic signal
  • Ans. 

    Design a traffic signal system

    • Identify the number of lanes and intersections

    • Determine the traffic flow and peak hours

    • Choose appropriate sensors and controllers

    • Implement a synchronization algorithm

    • Consider emergency vehicle prioritization

    • Include pedestrian crossing signals

    • Ensure compliance with local regulations

  • Answered by AI
  • Q2. Data structures
  • Q3. Oops spring jdbc
  • Q4. Hashmap implementation
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and provides constant time complexity for insertion, deletion, and retrieval.

    • Hashmap uses hashing function to map keys to indices in an array

    • Collisions can occur when multiple keys map to the same index, which can be resolved using separate chaining or open addressing

    • Java implementation: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q5. Pattern printing code
  • Ans. 

    This code prints a pyramid pattern of stars based on a specified number of rows.

    • Use nested loops: Outer loop for rows, inner loop for spaces and stars.

    • Calculate spaces: For each row, print (n - i) spaces before stars.

    • Print stars: For each row, print (2 * i + 1) stars after spaces.

    • Example for 5 rows: * *** ***** ******* *********

  • Answered by AI
  • Q6. Common point in linked list
  • Ans. 

    Common point in linked list refers to the node where two or more linked lists intersect.

    • The common point can be found by traversing both linked lists and comparing the nodes.

    • The common point can also be found by using two pointers, one for each linked list, and moving them until they meet at the common point.

    • Examples include finding the intersection point of two linked lists or finding the loop in a linked list.

  • Answered by AI
  • Q7. Optimization
  • Q8. Synchronisation
  • Q9. Threads

Skills evaluated in this interview

Are these interview questions helpful?

Interview Questionnaire 

5 Questions

  • Q1. Technical round was basically a White board interview .I have been asked to write few C# codes in order to explain OOPs concept .
  • Q2. What's MVC Life cycle . Explain how does AJAX call happen . How can you pass one data set or single data from one view to a partial view .
  • Ans. 

    MVC life cycle, AJAX call and passing data from view to partial view.

    • MVC life cycle includes request routing, controller instantiation, action execution, and rendering of the view.

    • AJAX call is initiated by sending an HTTP request to the server and receiving a response in the form of JSON or XML data.

    • To pass data from one view to a partial view, we can use ViewBag, ViewData, or TempData.

    • ViewBag is a dynamic object that ...

  • Answered by AI
  • Q3. What's Abstract class , what's the use of it . What's interface , how it appears to a important part of Service layer.
  • Ans. 

    Abstract class is a class that cannot be instantiated, while interface is a contract that defines methods.

    • Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have instance variables, while interface cannot.

    • Abstract class is used for code reusability and polymorphism, while interface is used for achieving abstraction and loose coupling.

    • In serv...

  • Answered by AI
  • Q4. Usual HR didn't discussion.
  • Q5. It was not question answer round . A formal interaction with high level people of the organization , through which they can try to see you interpersonal skills.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Asp.net MVC , C# , JavaScript, jQuery, Html

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. C++ Program to reverse a string

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Sep 2021. There were 4 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 

Math and verbal round .

Round 3 - Group Discussion 

General topics to speak

Round 4 - Technical 

(1 Question)

  • Q1. Duplicates in array College Projects Hashmap implementation
  • Ans. 

    Implement a function to find duplicates in an array of strings using Hashmap.

    • Create a Hashmap to store the frequency of each string in the array

    • Iterate through the array and check if the frequency of any string is greater than 1

    • If yes, add it to the list of duplicates

    • Return the list of duplicates

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer what you know, be genuine and honest

Skills evaluated in this interview

Atlassian Interview FAQs

How many rounds are there in Atlassian Software Engineer interview?
Atlassian interview process usually has 4 rounds. The most common rounds in the Atlassian interview process are Coding Test, One-on-one Round and HR.
How to prepare for Atlassian Software Engineer 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, Backend, Javascript, Agile and Python.
What are the top questions asked in Atlassian Software Engineer interview?

Some of the top questions asked at the Atlassian Software Engineer interview -

  1. DSA question abiut how to store different pages and efficiently manage memo...read more
  2. Values Round. Focused on instances from life reflecting Atlassian valu...read more
  3. DSA been asked in the interv...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more
Atlassian Software Engineer Salary
based on 271 salaries
₹34.2 L/yr - ₹63.8 L/yr
399% more than the average Software Engineer Salary in India
View more details

Atlassian Software Engineer Reviews and Ratings

based on 9 reviews

4.1/5

Rating in categories

3.8

Skill development

4.1

Work-life balance

4.7

Salary

3.3

Job security

3.8

Company culture

3.8

Promotions

3.9

Work satisfaction

Explore 9 Reviews and Ratings
Principal Frontend Software Engineer

Bangalore / Bengaluru

10-11 Yrs

Not Disclosed

Explore more jobs
Software Engineer
271 salaries
unlock blur

₹34.2 L/yr - ₹63.8 L/yr

Senior Software Engineer
224 salaries
unlock blur

₹45 L/yr - ₹80 L/yr

Software Developer
115 salaries
unlock blur

₹36.4 L/yr - ₹62.2 L/yr

Data Engineer
102 salaries
unlock blur

₹27.5 L/yr - ₹45 L/yr

Senior Data Engineer
101 salaries
unlock blur

₹13.9 L/yr - ₹67.1 L/yr

Explore more salaries
Compare Atlassian with

Salesforce

4.0
Compare

Google

4.3
Compare

Amazon

4.0
Compare

Oracle

3.7
Compare
write
Share an Interview