Coding test invitation was received by email on the same day of the application.
The test gives only 90 minutes for 4 questions. I gave up coding since then.
Interview questions [3]
Question 1
Implement a method 'find' that will find the starting index (zero based) where the second list occurs as a sub-list in the first list. It should return -1 if the sub-list cannot be found. Arguments are always given, not empty.
Sample Input 1
list1 = (1, 2, 3)
list2 = (2, 3)
Sample Output 1
1
Explanation
As second list (2, 3) is sub-list in first list (1, 2, 3) at index 1
Sample Input 2
list1 = (1, 2, 3)
list2 = (3, 2)
Sample Output 2
-1
Complete the function that takes an integer as its argument and returns the encoded string in base 7 using the following encoding rule:
base 10 0 1 2 3 4 5 6
base 7 0 a t l s i N
Sample Input 1
7
Sample Output 1
a0
A company uses a format to exchange messages with us. You need to validate the input.
The character encoding ASCII. Valid characters are between 0x20 (space) and 0x7E (~).
write validate function to generate valid output or the error message.
I applied online. The process took 2 weeks. I interviewed at Atlassian in July 2022
Interview
Seven interview stages basically:
1) Recruiter call
2) Technical screening on HackerRank
3) Code design
4) Algorithms and data structures
5) System design
6) Values interview
7) Manager's interview
All rounds were remote ones.
I have an impression that I did great on a system design interview and DSA session, but on code design I was unable to save enough time for advanced tasks and made few code mistakes. As a result, system design was my last interview round.
Interviewers and recruiter were really nice and positive, can't say anything bad, except that feedback was just like "sorry, you just not fit this position".
Interview questions [4]
Question 1
Set of questions on HackerRank for 75 mins. 3 small coding tasks and about 30 theoretical. You need to pass at least 50%.
Interview isn't hard, they start with a very simple problem and then build it up slowly.
leetcode easy is enough to prepare
I found recruiter isn't very responsive and disappears for weeks after promising to call.
Interview questions [1]
Question 1
I was asked to find a winner of a contest on the basis of votes supplied.
I got interviewed for Atlassian Bangalore recently. First round was code pairing round. Here you will be given a Atlassian codebase and you have to fix bugs/add features to it. I could solve most of the questions but got a rejection because they were expecting me to use a predefined function which I didn't remember at that point of time so I gave alternate solution which works pretty well. Bad experience overall!!
Interview questions [1]
Question 1
Code base consists of Classes for User, Groups and their relationship.