Upload Button Icon Add office photos

Atlassian

Compare button icon Compare button icon Compare

Filter interviews by

Atlassian Software Developer Intern Interview Questions, Process, and Tips for Freshers

Updated 28 Aug 2024

Top Atlassian Software Developer Intern Interview Questions and Answers for Freshers

  • 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 consecutiv ...read more
  • Q2. Total Unique Paths Problem Statement You are located at point ‘A’, the top-left corner of an M x N matrix, and your target is point ‘B’, the bottom-right corner of the s ...read more
  • Q3. Reorder Edges Problem Statement Given a connected directed acyclic graph with 'N' nodes and 'N-1' edges, where each pair of nodes is connected by exactly one edge, you c ...read more
View all 6 questions

Atlassian Software Developer Intern Interview Experiences for Freshers

5 interviews found

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

Hackerrank 3 questions were given of binary search dp and a math coding question

Round 2 - Technical 

(2 Questions)

  • Q1. Heap hard question
  • Q2. Nothing only one question was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - I was not up to the mark
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

Software Developer Intern Interview Questions Asked at Other Companies for Fresher

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Was conducted on hackerrank
3 questions
2 lc hard
1 lc medium

Round 2 - Technical 

(2 Questions)

  • Q1. Asked 1DSA coding problem and 3 follow ups for same
  • Q2. Longest increasing subsequence
  • Ans. 

    Find the longest increasing subsequence in an array

    • Use dynamic programming to solve this problem

    • Iterate through the array and keep track of the longest increasing subsequence ending at each index

    • Time complexity can be optimized to O(n log n) using binary search

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Simple Question on my project

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. 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 - Coding Test 

3 Questions :
1 hard, 1 medium, 1 easy

Round 3 - Technical 

(1 Question)

  • Q1. 1 DSA question. Create an API service such that we can limit the number of access of any particular user. So any user can access the function only a particular number of times in a minute. Can be solved u...
Round 4 - HR 

(1 Question)

  • Q1. This was a combined round for technical and HR. Most questions were dedicated to the HR aspect. Example of questions: 1. Have you worked in a team? 2. What challenges did you face while working in a team...

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and have a thorough preparation for HR interview.

Atlassian interview questions for designations

 Software Engineer Intern

 (5)

 Software Developer

 (6)

 SDE Intern

 (1)

 Software Engineer Intern Trainee

 (1)

 Intern

 (1)

 Software Engineer

 (3)

 Software Engineer2

 (1)

 Summer Intern

 (2)

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

This round had 2 coding problems and we had to code it on hackerearth only.
The use of Outside IDE was forbidden.
The timing of test was 12:00 PM to 1:30 PM.

  • 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 ...

  • Ans. 

    Find the maximum total booked minutes possible in a conference room for given meeting durations with a 15-minute break between meetings.

    • Iterate through the list of meeting durations and calculate the maximum total booked minutes by considering the 15-minute break constraint.

    • Keep track of the total booked minutes and skip consecutive meetings that violate the break constraint.

    • Return the maximum total booked minutes for

  • Answered by AI
  • Q2. 

    Total Unique Paths Problem Statement

    You are located at point ‘A’, the top-left corner of an M x N matrix, and your target is point ‘B’, the bottom-right corner of the same matrix. Your task is to calcula...

  • Ans. 

    Calculate total unique paths from top-left to bottom-right corner of a matrix by moving only right or down.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the number of unique paths for each cell.

    • Initialize the first row and first column with 1 as there is only one way to reach them.

    • For each cell, the number of unique paths is the sum of the paths from the cell above and the cell to...

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

This round was coding round with discussion .
The interviewer tried to trick the questions and wanted to test how we respond if something is asked out of preparation.
The code we ran on Google Docs was checked on Online IDE if it ran for sample inputs.
Timing : 12:00 PM to 1:30 PM

  • Q1. 

    Reorder Edges Problem Statement

    Given a connected directed acyclic graph with 'N' nodes and 'N-1' edges, where each pair of nodes is connected by exactly one edge, you can perform the following operation ...

  • Ans. 

    The task is to implement a function that reorders edges in a directed acyclic graph to ensure a directed path exists from every node to node 0 with minimum edge reversals.

    • Iterate through the graph to find the shortest path from each node to node 0.

    • Determine the number of edge reversals needed to create a directed path from each node to node 0.

    • Implement a function that performs the edge reversal operation efficiently.

    • Co...

  • Answered by AI
  • Q2. 

    Snake and Ladder Problem Statement

    Given a 'Snake and Ladder' board with N rows and N columns, where positions are numbered from 1 to (N*N) starting from the bottom left, alternating direction each row, f...

  • Ans. 

    Find the minimum number of dice throws required to reach the last cell on a 'Snake and Ladder' board.

    • Use Breadth First Search (BFS) algorithm to find the shortest path from the starting cell to the last cell.

    • Maintain a queue to keep track of the cells to be visited next.

    • Consider the effect of snakes and ladders on the movement of the player.

    • Handle the boundary conditions and constraints specified in the problem stateme...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 75 minutes
Round difficulty - Hard

This was a problem solving round and lasted for 75 minutes. The interviewer gave me a very complicated question.
The round was held on Google Meet and I was supposed to tell him the approach and write code on shared Google Docs.
Then it was followed with some HR questions.

  • Q1. 

    Ninja and Geometry Problem Statement

    In this problem, Ninja is provided with two lines on a 2D plane. The first line 'AB' is determined by two points A and B. The second line 'PQ' is determined by two poi...

  • Ans. 

    Calculate the intersection point of two lines on a 2D plane with precision up to six decimal places.

    • Parse input integers for each test case

    • Implement line intersection algorithm

    • Handle precision up to six decimal places in output

    • Return -1.000000 -1.000000 if lines do not intersect

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in BengaluruEligibility criteriaAbove 8 CGPAAtlassian interview preparation:Topics to prepare for the interview - Dynamic Programming, OOPs, Computer Network, Operating System, Game TheoryTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Topics from Coding Ninjas of Course Competitive Programming. Practice atleast one question everyday from sites like Leetcode,Interviewbit and also took part in Codeforces Contest.
Tip 2 : Though Data Structure is the base for any tech interview, one must know some other subjects as well like Operating System, Networking, and Database Management System for which I took help from Coding Ninja’s notes and from GeeksforGeeks. Along with this stuff, read about puzzles on GeeksForGeeks. Overall, Coding Ninjas & Geeks For Geeks have a big hand in making me crack this interview.

Application resume tips for other job seekers

Tip 1 : Keep your resume up to date and mention 2-3 good level projects which will give a good impression to the interviewer .
Tip 2 : Don't put false things on the resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Get interview-ready with Top Atlassian Interview Questions

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Telephonic Call 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Hard

My Interview for Adobe was on 16 September, 2019 . And my interview was telephonic interview and timing was about 12:00PM. And I got a call at about 12:15 PM .

  • Q1. 

    K-Sum Path in a Binary Tree Problem Statement

    You are presented with a binary tree where each node holds an integer, along with a specified number 'K'. The task is to identify and print every path that ex...

  • Ans. 

    The task is to identify and print every path in a binary tree whose node values sum up to a specified number 'K'.

    • Traverse the binary tree to find paths with sum equal to 'K'.

    • Print each valid path in the order encountered in the tree.

    • Handle cases where nodes may have missing children (-1).

  • Answered by AI
  • Q2. What is heap sort and what is its complexity?
  • Ans. 

    Heap sort is a comparison-based sorting algorithm that uses a binary heap data structure to sort elements in ascending or descending order.

    • Heap sort works by first building a max heap from the input array, then repeatedly removing the largest element from the heap and placing it at the end of the array.

    • The complexity of heap sort is O(n log n) for both time and space, making it efficient for large datasets.

    • Example: Giv...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. I applied for the job as SDE - Intern in NoidaEligibility criteriaCGPA Above 7.5Adobe interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS , Puzzles , Trees , Dynamic Programming , Backtracking , DBMS, Java.Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare OOPS very well, because they ask a lot of questions from OOPS.
Tip 2 : Practice Coding problems as much as you can because they will ask you to write codes.
Tip 3 : Prepare Your course subjects such as Operating system, Java, DBMS.

Application resume tips for other job seekers

Tip 1 : Keep Your resume at most of one page
Tip 2 : Mention only those things at which you have great knowledge. Don't write anything just to make your resume attractive.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. C++ Program to reverse a string
  • Ans. 

    C++ program to reverse a string

    • Use a loop to iterate through the string

    • Swap the characters at the beginning and end of the string

    • Continue swapping until the middle of the string is reached

  • Answered by AI

Skills evaluated in this interview

I applied via Referral and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly Basic concepts of javascript, html and css

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to prepare basic concepts properly. Don't hurry to highlight advance topics.
Answer questions only if you are sure about the correct answer.

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?
  • Ans. 

    Abstract class can have implementation while interface cannot. Classes can implement multiple interfaces but only one abstract class.

    • Abstract class can have constructors while interface cannot.

    • Abstract class can have non-abstract methods while interface cannot.

    • Interfaces are used for full abstraction while abstract classes are used for partial abstraction.

    • Example: Abstract class - Animal with method eat() and subclass ...

  • Answered by AI

Interview Preparation Tips

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

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Computer networking, oops, programming

Atlassian Interview FAQs

How many rounds are there in Atlassian Software Developer Intern interview for freshers?
Atlassian interview process for freshers usually has 3-4 rounds. The most common rounds in the Atlassian interview process for freshers are Coding Test, Technical and HR.
What are the top questions asked in Atlassian Software Developer Intern interview for freshers?

Some of the top questions asked at the Atlassian Software Developer Intern interview for freshers -

  1. Longest increasing subseque...read more
  2. 1 DSA question. Create an API service such that we can limit the number of acc...read more
  3. Asked 1DSA coding problem and 3 follow ups for s...read more

Tell us how to improve this page.

Atlassian Software Developer Intern Interview Process for Freshers

based on 4 interviews

2 Interview rounds

  • Coding Test Round - 1
  • Coding Test Round - 2
View more

Atlassian Software Developer Intern Reviews and Ratings

based on 3 reviews

3.9/5

Rating in categories

3.0

Skill development

4.7

Work-life balance

5.0

Salary

3.6

Job security

4.1

Company culture

5.0

Promotions

3.4

Work satisfaction

Explore 3 Reviews and Ratings
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

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