Atlassian Data Scientist Interview Questions
Practice the exact questions companies are asking right now.
Identify Top-3 Users by Recent Total Spend
Users +----+-------+-------------+ | id | name | joined_date | +----+-------+-------------+ | 1 | Alice | 2023-01-02 | | 2 | Bob | 2023-02-14 |...
Expand Internationally: Data and Strategy for Market Entry
Behavioral + Product Sense (Onsite) Context You are interviewing for a Data Scientist role at a product-led software company. In this onsite round, yo...
Diagnose Checkout Rate Drop: Steps and Analyses
Scenario A core product metric (checkout-completion rate) shows an unexpected change. Leadership needs a root-cause analysis and action plan within ho...
Implement Real-Time Rate Limiting for Web Service Requests
Scenario A web service must throttle traffic from clients; you need to decide in real-time whether each incoming request should be served or rejected ...
Minimize L1 Distance with k Cluster Centers in Array
1D k-Center (Minimax L1) Clustering Problem You are given an array of n integers on a number line and an integer k (1 ≤ k ≤ n). Place k cluster center...
Minimize max L1 radius with k centers in 1D
You are given an array A of n integers (values may be negative and may repeat) and an integer k (1 ≤ k ≤ n). Place k cluster centers anywhere on the r...
Implement sliding-window rate limiter with dual thresholds
Implement getRequestStatus(urls: List[str]) -> List[str]. The i-th entry in urls represents a single incoming request at timestamp t = i seconds (t st...
Demonstrate motivation, feedback, and prioritization
Behavioral & Leadership STAR Prompts (Data Scientist — Technical Screen) Context: You are preparing for a Data Scientist technical screen at Atlassian...
Train and evaluate logistic model with regularization
Binary Classification with Logistic Regression and Regularization Data - Two CSVs: a training set x and a test set x_test. - Each has 7 columns: - C...
Label game performance by margin
Given a games DataFrame (or R data.frame) with columns: team_id, opponent_team_id, team_score, opponent_team_score, write code to: (1) Define a functi...
Rank each team’s top 3 scores in 2024
Using the same schema, compute each team’s top 3 highest-scoring games for season_year = 2024, treating each game from BOTH teams’ perspectives (i.e.,...
Find 2023 NCAA championship winner
You are given two tables. Schema: team(team_id INT PRIMARY KEY, team_name TEXT); game(game_id INT PRIMARY KEY, team_id INT, opponent_team_id INT, date...