Atlassian interview experience Real time questions & tips from candidates to crack your interview

SDE - Intern

Atlassian
upvote
share-icon
2 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: Continous
Topics: Data Structure, Algorithms, OOPS, OS, Computer Network
Tip
Tip

Tip 1 : Keep taking notes about what a problem is teaching you. Keep revisiting them. Spaced repitition helps in committing things to memory.
Tip 2 : Try getting comfortable in every topic. Don't leave anything behind.
Tip 3 : Keep good projects in your resume

Application process
Where: Campus
Eligibility: 2024 Batch were eligible for internship in our collage
Resume Tip
Resume tip

Tip 1 : Add 2 -3 good projects. Keep it simple ,one page only for interns.
Tip 2 : Everything in your resume should be true about you and your projects.

Interview rounds

01
Round
Medium
Video Call
Duration60 minutes
Interview date20 Jul 2022
Coding problem2

The interviewer was very supportive and calm. She explained the question in an ample amount of time.

1. Topological Sort

Moderate
30m average time
70% success
0/80
Asked in companies
GoogleOYOAmazon

A Directed Acyclic Graph (DAG) is a directed graph that contains no cycles.

Topological Sorting of DAG is a linear ordering of vertices such that for every directed edge from vertex ‘u’ to vertex ‘v’, vertex ‘u’ comes before ‘v’ in the ordering. Topological Sorting for a graph is not possible if the graph is not a DAG.

Given a DAG consisting of ‘V’ vertices and ‘E’ edges, you need to find out any topological sorting of this DAG. Return an array of size ‘V’ representing the topological sort of the vertices of the given DAG.

For example, Consider the DAG shown in the picture.

alt tex

In this graph, there are directed edges from 0 to 1 and 0 to 3, so 0 should come before 1 and 3. Also, there are directed edges from 1 to 2 and 3 to 2 so 1 and 3 should come before 2.

So, The topological sorting of this DAG is {0 1 3 2}.

Note that there are multiple topological sortings possible for a DAG. For the graph given above one another topological sorting is: {0, 3, 1, 2}

Note:
1. It is guaranteed that the given graph is DAG.
2. There will be no multiple edges and self-loops in the given DAG.
3. There can be multiple correct solutions, you can find any one of them. 
4. Don’t print anything, just return an array representing the topological sort of the vertices of the given DAG.
Try solving now

2. DBMS Questions

Advantages of SQL over Excel, Example of DCL commands in SQL.

Problem approach

Tip 1: One should have a good grasp on core subjects like OOPS DBMS OS which are covered till that semester.
Tip 2: It totally depends on the interviewer to ask core or not so better to be prepared with these topics it hardly takes a day to revise them. Keep notes of core topics with you so that you can revise it regularly.
Tip 3:Donot try to answer things you don't know. Simply say u have no idea about it and will cover this topic

02
Round
Medium
HR Round
Duration50 minutes
Interview date22 Aug 2022
Coding problem1

It was about 45 mins long and is by far the longest HR round I ever gave. My interviewer was a senior manager at Atlassian and he made me really comfortable. I didn't realize that we already had a conversation of 50 minutes because he kept it so seamless and made it my best HR experience till date.

1. Basic HR Questions

He asked questions about my projects, the tech shacks I know, and my previous experiences. He had my resume opened in front of him and was validating every thing.Some questions were :
Have u ever missed the deadline? If yes how will you handle the situation?
In case you know that u won't be able to complete the task within the time how did you approach your teacher
Is there any time when you got a feedback and tell a time when u gave a feedback

Problem approach

Tip 1: Don't fake anything in your resume 
Tip 2: Be concise in your answers and don't answer things the interviewer is not asking of. 
Tip 3: Related every thing with a case which u have faced earlier

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

Which array operation has O(n) worst-case time complexity?

Choose another skill to practice
Similar interview experiences
company logo
SDE - Intern
3 rounds | 6 problems
Interviewed by Atlassian
2644 views
0 comments
0 upvotes
company logo
SDE - Intern
3 rounds | 6 problems
Interviewed by Atlassian
986 views
0 comments
0 upvotes
company logo
SDE - Intern
3 rounds | 5 problems
Interviewed by Atlassian
810 views
0 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 4 problems
Interviewed by Atlassian
646 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - Intern
3 rounds | 6 problems
Interviewed by Amazon
14060 views
4 comments
0 upvotes
company logo
SDE - Intern
4 rounds | 7 problems
Interviewed by Microsoft
13403 views
1 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 4 problems
Interviewed by Amazon
9305 views
2 comments
0 upvotes